diff --git a/.clang-format b/.clang-format new file mode 100644 index 0000000..3e4ddd4 --- /dev/null +++ b/.clang-format @@ -0,0 +1,104 @@ +--- +Language: Cpp +# BasedOnStyle: LLVM +AccessModifierOffset: -4 +AlignAfterOpenBracket: Align +AlignConsecutiveAssignments: false +AlignConsecutiveDeclarations: false +AlignEscapedNewlinesLeft: true +AlignOperands: true +AlignTrailingComments: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: false +AllowShortCaseLabelsOnASingleLine: false +AllowShortFunctionsOnASingleLine: All +AllowShortIfStatementsOnASingleLine: false +AllowShortLoopsOnASingleLine: false +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: false +AlwaysBreakTemplateDeclarations: true +BinPackArguments: false +BinPackParameters: false +BreakBeforeBraces: Custom +BraceWrapping: + AfterClass: true + AfterControlStatement: false + AfterEnum: false + AfterFunction: true + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + BeforeCatch: false + BeforeElse: false + IndentBraces: false +BreakBeforeBinaryOperators: None +BreakBeforeTernaryOperators: true +BreakConstructorInitializersBeforeComma: false +BreakAfterJavaFieldAnnotations: false +BreakStringLiterals: true +ColumnLimit: 90 +CommentPragmas: '^ IWYU pragma:' +ConstructorInitializerAllOnOneLineOrOnePerLine: true +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: false +DerivePointerAlignment: false +DisableFormat: false +ExperimentalAutoDetectBinPacking: false +ForEachMacros: + - foreach + - Q_FOREACH + - BOOST_FOREACH +IncludeCategories: + - Regex: '^"(gnuradio)/' + Priority: 1 + - Regex: '^<(gnuradio)/' + Priority: 2 + - Regex: '^<(boost)/' + Priority: 98 + - Regex: '^<[a-z]*>$' + Priority: 99 + - Regex: '^".*"$' + Priority: 0 + - Regex: '.*' + Priority: 10 + +IncludeIsMainRegex: '(Test)?$' +IndentCaseLabels: false +IndentWidth: 4 +IndentWrappedFunctionNames: false +JavaScriptQuotes: Leave +JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: true +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 2 +NamespaceIndentation: None +ObjCBlockIndentWidth: 2 +ObjCSpaceAfterProperty: false +ObjCSpaceBeforeProtocolList: true +PenaltyBreakBeforeFirstCallParameter: 19 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakString: 1000 +PenaltyExcessCharacter: 1000000 +PenaltyReturnTypeOnItsOwnLine: 60 +PointerAlignment: Left +ReflowComments: true +SortIncludes: true +SpaceAfterCStyleCast: false +SpaceAfterTemplateKeyword: true +SpaceBeforeAssignmentOperators: true +SpaceBeforeParens: ControlStatements +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 1 +SpacesInAngles: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Cpp11 +TabWidth: 8 +UseTab: Never diff --git a/.conda/README.md b/.conda/README.md new file mode 100644 index 0000000..3bbd006 --- /dev/null +++ b/.conda/README.md @@ -0,0 +1,110 @@ +# gr-tempest conda recipe + +This recipe is for creating a package that can be installed into a [conda](https://docs.conda.io/en/latest/) environment. See the [Conda GNU Radio Guide](https://wiki.gnuradio.org/index.php/CondaInstall) for more information on using GNU Radio with conda. + +Packages for GNU Radio and some out-of-tree (OOT) modules are available through the [`conda-forge` channel](https://conda-forge.org/). If this OOT module is already available (search "gnuradio" on [anaconda.org](https://anaconda.org)), it is preferable to use that existing package rather than this recipe. + +#### Users + +- [Building the package](#building-the-package) + +#### Developers + +- [Modifying the recipe](#modifying-the-recipe) +- [Continuous integration](#continuous-integration) + + +## Building the package + +(See the [Conda GNU Radio Guide](https://wiki.gnuradio.org/index.php/CondaInstall) if you are unfamiliar with how to use conda.) + +1. Make sure that have `conda-build` and `conda-forge-pinning` installed and updated in your base environment: + + conda activate base + conda install -n base conda-build conda-forge-pinning + conda upgrade -n base conda-build conda-forge-pinning + + **Windows users only**: you will also need to have Microsoft's Visual C++ build tools installed. Usually you can do this by installing the [Community edition of Visual Studio](https://visualstudio.microsoft.com/free-developer-offers/) and then selecting a MSVC C++ x64/x86 build tools component under the list of "Individual Components". As of this writing, you will specifically need MSVC v141, i.e. the "MSVC v141 - VS2017 C++ x64/x86 build tools (v14.16)" component. If the build fails to find the version of MSVC it is looking for, try installing other (newer) versions. + +2. Download the source code for this OOT module (which includes this recipe). Typically, this is done by using `git` and cloning the module's repository: + + git clone + cd + +3. Run `conda-build` on the recipe to create the package: + + (Linux and macOS) + + conda build .conda/recipe/ -m ${CONDA_PREFIX}/conda_build_config.yaml + + (Windows) + + conda build .conda\recipe\ -m %CONDA_PREFIX%\conda_build_config.yaml + + If you plan on using this package within an existing environment which uses a specific version of Python, specify the version of Python using the `--python` flag. You must use a version string that matches one of the strings listed under `python` in the `${CONDA_PREFIX}/conda_build_config.yaml` file, e.g: + + (Linux and macOS) + + conda build .conda/recipe/ -m ${CONDA_PREFIX}/conda_build_config.yaml --python="3.9.* *_cpython" + + (Windows) + + conda build .conda\recipe\ -m %CONDA_PREFIX%\conda_build_config.yaml --python="3.9.* *_cpython" + + If you encounter errors, consult with the OOT module maintainer or the maintainers of the [gnuradio feedstock](https://github.com/conda-forge/gnuradio-feedstock). It is possible that the recipe will need to be updated. + +4. Install the package into an existing environment + + conda install --use-local -n gnuradio-EXAMPLE + + or create a new environment that includes the package: + + conda create -n test_env gnuradio-EXAMPLE + + +## Modifying the recipe + +This recipe is derived from a template, and so it is best to check it and make any necessary modifications. Likely changes include: + +- Populating metadata near the bottom of the `recipe/meta.yaml` file +- Adding "host" (build-time) and "run" (run-time) dependencies specific to your module in `recipe/meta.yaml` +- Adding special configuration flags or steps are necessary to carry out the build to the build scripts (`recipe/build.sh` for Linux/macOS and `recipe/bld.bat` for Windows) + +Specifying the versions of GNU Radio that your OOT is compatible with is one of the most important modifications. Following the instructions below, the module will be built against the conda-forge "pinned" version of GNU Radio, which is usually the latest version. + +- To override the pinned version of GNU Radio (e.g. for a branch that builds against an older version), specify the `gnuradio_core` key as instructed in `recipe/conda_build_config.yaml`. +- If the module is compatible with multiple major versions of GNU Radio, and you want to build against multiple of them, you can also add extra versions to `recipe/conda_build_config.yaml` to expand the default build matrix. + +See the [conda-build documentation](https://docs.conda.io/projects/conda-build/en/latest/index.html) for details on how to write a conda recipe. + + +## Continuous integration + +Only a few steps are needed to use this recipe to build and test this OOT module using CI services. It can also be used to upload packages to [anaconda.org](https://anaconda.org) for others to download and use. + +1. Make sure that have `conda-smithy` installed in your base conda environment: + + conda activate base + conda install -n base conda-smithy + conda upgrade -n base conda-smithy + +2. Make any changes to the recipe and `conda-forge.yml` that are necessary. For example, if you plan on uploading packages to your own [anaconda.org](https://anaconda.org) channel, specify the channel name and label as the `channel_targets` key in `recipe/conda_build_config.yaml`. Commit the changes to your repository: + + git commit -a + +3. "Re-render" the CI scripts by running conda-smithy from the root of your repository: + + conda-smithy rerender --feedstock_config .conda/conda-forge.yml -c auto + + This will create a commit that adds or updates the CI scripts that have been configured with `conda-forge.yml`. If you want to minimize extraneous files, you can remove some of the newly-created files that are not necessary outside of a typical conda-forge feedstock: + + git rm -f .github/workflows/automerge.yml .github/workflows/webservices.yml .circleci/config.yml + git commit --amend -s + + When the CI is executed (on a pull request or commit), it will run one job per configuration file in `.ci_support` to build packages for various platforms, Python versions, and optionally `gnuradio` versions (by adding to `gnuradio_extra_pin` in `recipe/conda_build_config.yaml`). + + **You should repeat this step whenever the recipe is updated or when changes to the conda-forge infrastructure require all CI scripts to be updated.** + + Since the newly created files will be rewritten whenever conda-smithy is run, you should not edit any of the automatically-generated files in e.g. `.ci_support`, `.scripts`, or `.github/workflows/conda-build.yml`. + +4. (optional) If you want to enable uploads of the packages to [anaconda.org](https://anaconda.org) whenever the CI is run from a commit on the branch specified in `conda-forge.yml`, you need to set an Anaconda Cloud API token to the `BINSTAR_TOKEN` environment variable. To generate a token, follow the instructions [here](https://docs.anaconda.com/anacondaorg/user-guide/tasks/work-with-accounts/#creating-access-tokens). To populate the `BINSTAR_TOKEN` environment variable for CI jobs, add the token as a secret by following, for example, the [Github docs](https://docs.github.com/en/actions/reference/encrypted-secrets). diff --git a/.conda/conda-forge.yml b/.conda/conda-forge.yml new file mode 100644 index 0000000..66c58f2 --- /dev/null +++ b/.conda/conda-forge.yml @@ -0,0 +1,30 @@ +# See https://conda-forge.org/docs/maintainer/conda_forge_yml.html for +# documentation on possible keys and values. + +# uncomment to enable cross-compiled osx-arm64 builds +#build_platform: +# osx_arm64: osx_64 +clone_depth: 0 +github_actions: + store_build_artifacts: true +os_version: + linux_64: cos7 +provider: + linux: github_actions + osx: github_actions + win: github_actions + # uncomment to enable additional linux platforms + #linux_aarch64: github_actions + #linux_ppc64le: github_actions +recipe_dir: .conda/recipe +# skip unnecessary files since this is not a full-fledged conda-forge feedstock +skip_render: + - README.md + - LICENSE.txt + - .gitattributes + - .gitignore + - build-locally.py + - LICENSE +test: native_and_emulated +# enable uploads to Anaconda Cloud from specified branches only +upload_on_branch: main diff --git a/.conda/recipe/bld.bat b/.conda/recipe/bld.bat new file mode 100644 index 0000000..de4a3b7 --- /dev/null +++ b/.conda/recipe/bld.bat @@ -0,0 +1,29 @@ +setlocal EnableDelayedExpansion +@echo on + +:: Make a build folder and change to it +cmake -E make_directory buildconda +cd buildconda + +:: configure +cmake -G "Ninja" ^ + -DCMAKE_BUILD_TYPE:STRING=Release ^ + -DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^ + -DCMAKE_PREFIX_PATH:PATH="%LIBRARY_PREFIX%" ^ + -DGR_PYTHON_DIR:PATH="%SP_DIR%" ^ + -DENABLE_DOXYGEN=OFF ^ + -DENABLE_TESTING=ON ^ + .. +if errorlevel 1 exit 1 + +:: build +cmake --build . --config Release -- -j%CPU_COUNT% +if errorlevel 1 exit 1 + +:: install +cmake --build . --config Release --target install +if errorlevel 1 exit 1 + +:: test +ctest --build-config Release --output-on-failure --timeout 120 -j%CPU_COUNT% +if errorlevel 1 exit 1 diff --git a/.conda/recipe/build.sh b/.conda/recipe/build.sh new file mode 100644 index 0000000..2f3df70 --- /dev/null +++ b/.conda/recipe/build.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash + +set -ex + +cmake -E make_directory buildconda +cd buildconda + +cmake_config_args=( + -DCMAKE_BUILD_TYPE=Release + -DCMAKE_INSTALL_PREFIX=$PREFIX + -DLIB_SUFFIX="" + -DENABLE_DOXYGEN=OFF + -DENABLE_TESTING=ON +) + +cmake ${CMAKE_ARGS} -G "Ninja" .. "${cmake_config_args[@]}" +cmake --build . --config Release -- -j${CPU_COUNT} +cmake --build . --config Release --target install + +if [[ "${CONDA_BUILD_CROSS_COMPILATION:-}" != "1" || "${CROSSCOMPILING_EMULATOR}" != "" ]]; then + ctest --build-config Release --output-on-failure --timeout 120 -j${CPU_COUNT} +fi diff --git a/.conda/recipe/conda_build_config.yaml b/.conda/recipe/conda_build_config.yaml new file mode 100644 index 0000000..ce9c0f6 --- /dev/null +++ b/.conda/recipe/conda_build_config.yaml @@ -0,0 +1,14 @@ +# this is the channel and label where packages will be uploaded to if enabled +# (see ../README.md) +channel_targets: + - gnuradio main +# override the conda-forge pin for gnuradio-core by uncommenting +# and specifying a different version here +#gnuradio_core: + #- "3.10.1" +gnuradio_extra_pin: + # always leave one entry with the empty string + - "" + # add version strings here like to get builds for versions other than + # the conda-forge-wide default or version specified above for gnuradio_core + #- "3.9.5" diff --git a/.conda/recipe/meta.yaml b/.conda/recipe/meta.yaml new file mode 100644 index 0000000..ec998d0 --- /dev/null +++ b/.conda/recipe/meta.yaml @@ -0,0 +1,88 @@ +{% set oot_name = "tempest" %} +{% set name = "gnuradio-" + oot_name %} +{% set version = (environ.get("GIT_DESCRIBE_TAG_PEP440", "0.0.0." + datetime.datetime.now().strftime("%Y%m%d") + ".dev+" + environ.get("GIT_DESCRIBE_HASH", "local"))|string) %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + # use local path or git repository depending on if the build is local or done on CI + path: "../.." # [not os.environ.get("CI")] + git_url: {{ environ.get('FEEDSTOCK_ROOT', "../..") }} # [os.environ.get("CI")] + +build: + number: 0 + +requirements: + build: + - {{ compiler("c") }} + - {{ compiler("cxx") }} + - cmake + - git + - ninja + - pkg-config + # cross-compilation requirements + - python # [build_platform != target_platform] + - cross-python_{{ target_platform }} # [build_platform != target_platform] + - numpy # [build_platform != target_platform] + - pybind11 # [build_platform != target_platform] + # Add extra build tool dependencies here + + host: + - gmp # [linux] + # the following two entries are for generating builds against specific GR versions + - gnuradio-core # [not gnuradio_extra_pin] + - gnuradio-core {{ gnuradio_extra_pin }}.* # [gnuradio_extra_pin] + - pip # [win] + - pybind11 + - python + - numpy + - volk + # Add/remove library dependencies here + + run: + - numpy + - python + # Add/remove runtime dependencies here + +test: + commands: + # Add a list of commands to run to check that the package works. Examples below. + + ## verify that commands run + #- COMMAND --help + + # verify that (some) headers get installed + - test -f $PREFIX/include/gnuradio/{{ oot_name }}/api.h # [not win] + - if not exist %PREFIX%\\Library\\include\\gnuradio\\{{ oot_name }}\\api.h exit 1 # [win] + + ## verify that libraries get installed + #- test -f $PREFIX/lib/lib{{ name }}${SHLIB_EXT} # [not win] + #- if not exist %PREFIX%\\Library\\bin\\{{ name }}.dll exit 1 # [win] + #- if not exist %PREFIX%\\Library\\lib\\{{ name }}.lib exit 1 # [win] + + ## verify that (some) GRC blocks get installed + #{% set blocks = ["LIST", "OF", "GRC", "BLOCK", "NAMES"] %} + #{% for block in blocks %} + #- test -f $PREFIX/share/gnuradio/grc/blocks/{{ block }}.block.yml # [not win] + #- if not exist %PREFIX%\\Library\\share\\gnuradio\\grc\\blocks\\{{ block }}.block.yml exit 1 # [win] + #{% endfor %} + + imports: + # verify that the python module imports + - gnuradio.{{ oot_name }} + +about: + # For licenses, use the SPDX identifier, e.g: "GPL-2.0-only" instead of + # "GNU General Public License version 2.0". See https://spdx.org/licenses/. + # Include the license text by using the license_file entry set to the path + # of the license text file within the source directory, e.g. "LICENSE". + # See https://docs.conda.io/projects/conda-build/en/latest/resources/define-metadata.html#license-file + + #home: https://github.com//gr-tempest + #license: GPL-3.0-or-later + #license_file: LICENSE + #summary: GNU Radio tempest module + #description: > + # Short description of the gr-tempest module. diff --git a/CMakeLists.txt b/CMakeLists.txt index 706c2c2..4780837 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,20 +1,15 @@ -# Copyright 2011,2012,2014,2016,2018 Free Software Foundation, Inc. -# # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest +# Copyright 2011-2020 Free Software Foundation, Inc. # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# This file was generated by gr_modtool, a tool from the GNU Radio framework +# This file is a part of gr-tempest # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# SPDX-License-Identifier: GPL-3.0-or-later # -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. + +# Select the release build type by default to get optimization flags. +# This has to come before project() which otherwise initializes it. +# Build type can still be overridden by setting -DCMAKE_BUILD_TYPE= +set(CMAKE_BUILD_TYPE "Release" CACHE STRING "") ######################################################################## # Project setup @@ -29,21 +24,16 @@ if(DEFINED ENV{PYBOMBS_PREFIX}) message(STATUS "PyBOMBS installed GNU Radio. Setting CMAKE_INSTALL_PREFIX to $ENV{PYBOMBS_PREFIX}") endif() -# Select the release build type by default to get optimization flags -if(NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE "Release") - message(STATUS "Build type not specified: defaulting to release.") -endif(NOT CMAKE_BUILD_TYPE) -set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "") - # Make sure our local CMake Modules path comes first -list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules) +list(INSERT CMAKE_MODULE_PATH 0 ${PROJECT_SOURCE_DIR}/cmake/Modules) +# Find gnuradio to get access to the cmake modules +find_package(Gnuradio "3.10" REQUIRED blocks fft filter volk) # Set the version information here set(VERSION_MAJOR 1) set(VERSION_API 0) set(VERSION_ABI 0) -set(VERSION_PATCH git) +set(VERSION_PATCH 0) cmake_policy(SET CMP0011 NEW) @@ -51,39 +41,20 @@ cmake_policy(SET CMP0011 NEW) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) ######################################################################## -# Compiler specific setup +# Minimum Version Requirements +######################################################################## + +include(GrMinReq) + +######################################################################## +# Compiler settings ######################################################################## -if((CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR - CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - AND NOT WIN32) - #http://gcc.gnu.org/wiki/Visibility - add_definitions(-fvisibility=hidden) -endif() -IF(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") - SET(CMAKE_CXX_STANDARD 11) -ELSEIF(CMAKE_CXX_COMPILER_ID MATCHES "Clang") - SET(CMAKE_CXX_STANDARD 11) -ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - SET(CMAKE_CXX_STANDARD 11) -ELSE() - message(WARNING "C++ standard could not be set because compiler is not GNU, Clang or MSVC.") -ENDIF() - -IF(CMAKE_C_COMPILER_ID STREQUAL "GNU") - SET(CMAKE_C_STANDARD 11) -ELSEIF(CMAKE_C_COMPILER_ID MATCHES "Clang") - SET(CMAKE_C_STANDARD 11) -ELSEIF(CMAKE_C_COMPILER_ID STREQUAL "MSVC") - SET(CMAKE_C_STANDARD 11) -ELSE() - message(WARNING "C standard could not be set because compiler is not GNU, Clang or MSVC.") -ENDIF() +include(GrCompilerSettings) ######################################################################## # Install directories ######################################################################## -find_package(Gnuradio "3.8" REQUIRED COMPONENTS blocks fft filter volk) include(GrVersion) include(GrPlatform) #define LIB_SUFFIX @@ -92,8 +63,8 @@ if(NOT CMAKE_MODULES_DIR) set(CMAKE_MODULES_DIR lib${LIB_SUFFIX}/cmake) endif(NOT CMAKE_MODULES_DIR) -set(GR_INCLUDE_DIR include/tempest) -set(GR_CMAKE_DIR ${CMAKE_MODULES_DIR}/tempest) +set(GR_INCLUDE_DIR include/gnuradio/tempest) +set(GR_CMAKE_DIR ${CMAKE_MODULES_DIR}/gnuradio-tempest) set(GR_PKG_DATA_DIR ${GR_DATA_DIR}/${CMAKE_PROJECT_NAME}) set(GR_PKG_DOC_DIR ${GR_DOC_DIR}/${CMAKE_PROJECT_NAME}) set(GR_PKG_CONF_DIR ${GR_CONF_DIR}/${CMAKE_PROJECT_NAME}/conf.d) @@ -137,7 +108,7 @@ endif(DOXYGEN_FOUND) # Create uninstall target ######################################################################## configure_file( - ${CMAKE_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in + ${PROJECT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake @ONLY) @@ -145,22 +116,33 @@ add_custom_target(uninstall ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake ) - ######################################################################## # Add subdirectories ######################################################################## -add_subdirectory(include/tempest) +add_subdirectory(include/gnuradio/tempest) add_subdirectory(lib) add_subdirectory(apps) add_subdirectory(docs) -add_subdirectory(swig) -add_subdirectory(python) -add_subdirectory(grc) +# NOTE: manually update below to use GRC to generate C++ flowgraphs w/o python +if(ENABLE_PYTHON) + message(STATUS "PYTHON and GRC components are enabled") + add_subdirectory(python/tempest) + add_subdirectory(grc) +else(ENABLE_PYTHON) + message(STATUS "PYTHON and GRC components are disabled") +endif(ENABLE_PYTHON) ######################################################################## # Install cmake search helper for this library ######################################################################## -install(FILES cmake/Modules/tempestConfig.cmake - DESTINATION ${CMAKE_MODULES_DIR}/tempest +install(FILES cmake/Modules/gnuradio-tempestConfig.cmake + DESTINATION ${GR_CMAKE_DIR} +) + +include(CMakePackageConfigHelpers) +configure_package_config_file( + ${PROJECT_SOURCE_DIR}/cmake/Modules/targetConfig.cmake.in + ${CMAKE_CURRENT_BINARY_DIR}/cmake/Modules/${target}Config.cmake + INSTALL_DESTINATION ${GR_CMAKE_DIR} ) diff --git a/README.md b/README.md index 1a8ced8..7e08519 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ **Status:** The examples folder contains several examples that work with recordings and it's been tested on hardware (see videos below). Feedback is more than welcome! +**As of August 2022 several new blocks have been added, and are still under testing. If something's not working, checkout the `vanilla-3.8' branch or f5ed517ea60a2bb84c10e3bd14c638c575957c26 gnuradio 3.10 commit for the previous, more tested, version** + **If you find the code useful, please consider starring the repository. This will help us get funding to support the project.** TEMPEST (or [Van Eck Phreaking](https://en.wikipedia.org/wiki/Van_Eck_phreaking)) is a technique to eavesdrop video monitors by receiving the electromagnetic signal emitted by the VGA/HDMI cable and connectors (although other targets are possible, such as keyboards, for which the same term is generally used, see [Wikipedia/Tempest](https://en.wikipedia.org/wiki/Tempest_(codename))). diff --git a/apps/CMakeLists.txt b/apps/CMakeLists.txt index 3b443dc..60c9cdb 100644 --- a/apps/CMakeLists.txt +++ b/apps/CMakeLists.txt @@ -3,20 +3,8 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. include(GrPython) diff --git a/cmake/Modules/tempestConfig.cmake b/cmake/Modules/gnuradio-tempestConfig.cmake similarity index 56% rename from cmake/Modules/tempestConfig.cmake rename to cmake/Modules/gnuradio-tempestConfig.cmake index f5d2b49..72b67de 100644 --- a/cmake/Modules/tempestConfig.cmake +++ b/cmake/Modules/gnuradio-tempestConfig.cmake @@ -1,9 +1,10 @@ -INCLUDE(FindPkgConfig) -PKG_CHECK_MODULES(PC_TEMPEST tempest) +find_package(PkgConfig) + +PKG_CHECK_MODULES(PC_GR_TEMPEST gnuradio-tempest) FIND_PATH( - TEMPEST_INCLUDE_DIRS - NAMES tempest/api.h + GR_TEMPEST_INCLUDE_DIRS + NAMES gnuradio/tempest/api.h HINTS $ENV{TEMPEST_DIR}/include ${PC_TEMPEST_INCLUDEDIR} PATHS ${CMAKE_INSTALL_PREFIX}/include @@ -12,7 +13,7 @@ FIND_PATH( ) FIND_LIBRARY( - TEMPEST_LIBRARIES + GR_TEMPEST_LIBRARIES NAMES gnuradio-tempest HINTS $ENV{TEMPEST_DIR}/lib ${PC_TEMPEST_LIBDIR} @@ -24,8 +25,8 @@ FIND_LIBRARY( /usr/lib64 ) -include("${CMAKE_CURRENT_LIST_DIR}/tempestTarget.cmake") +include("${CMAKE_CURRENT_LIST_DIR}/gnuradio-tempestTarget.cmake") INCLUDE(FindPackageHandleStandardArgs) -FIND_PACKAGE_HANDLE_STANDARD_ARGS(TEMPEST DEFAULT_MSG TEMPEST_LIBRARIES TEMPEST_INCLUDE_DIRS) -MARK_AS_ADVANCED(TEMPEST_LIBRARIES TEMPEST_INCLUDE_DIRS) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(GR_TEMPEST DEFAULT_MSG GR_TEMPEST_LIBRARIES GR_TEMPEST_INCLUDE_DIRS) +MARK_AS_ADVANCED(GR_TEMPEST_LIBRARIES GR_TEMPEST_INCLUDE_DIRS) diff --git a/cmake/Modules/targetConfig.cmake.in b/cmake/Modules/targetConfig.cmake.in index 79e4a28..4a1fb31 100644 --- a/cmake/Modules/targetConfig.cmake.in +++ b/cmake/Modules/targetConfig.cmake.in @@ -2,20 +2,8 @@ # # This file is part of GNU Radio # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. include(CMakeFindDependencyMacro) diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index 4bedb70..246b60b 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -3,20 +3,8 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. ######################################################################## # Setup dependencies diff --git a/docs/README.tempest b/docs/README.tempest index 6595ebc..252bd8f 100644 --- a/docs/README.tempest +++ b/docs/README.tempest @@ -2,7 +2,7 @@ This is the tempest-write-a-block package meant as a guide to building out-of-tree packages. To use the tempest blocks, the Python namespaces is in 'tempest', which is imported as: - import tempest + import gnuradio.tempest as tempest See the Doxygen documentation for details about the blocks available in this package. A quick listing of the details can be found in Python diff --git a/docs/doxygen/CMakeLists.txt b/docs/doxygen/CMakeLists.txt index e64b36f..ed3e663 100644 --- a/docs/doxygen/CMakeLists.txt +++ b/docs/doxygen/CMakeLists.txt @@ -3,32 +3,21 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. ######################################################################## # Create the doxygen configuration file ######################################################################## -file(TO_NATIVE_PATH ${CMAKE_SOURCE_DIR} top_srcdir) -file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR} top_builddir) -file(TO_NATIVE_PATH ${CMAKE_SOURCE_DIR} abs_top_srcdir) -file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR} abs_top_builddir) +file(TO_NATIVE_PATH ${PROJECT_SOURCE_DIR} top_srcdir) +file(TO_NATIVE_PATH ${PROJECT_BINARY_DIR} top_builddir) +file(TO_NATIVE_PATH ${PROJECT_SOURCE_DIR} abs_top_srcdir) +file(TO_NATIVE_PATH ${PROJECT_BINARY_DIR} abs_top_builddir) set(HAVE_DOT ${DOXYGEN_DOT_FOUND}) set(enable_html_docs YES) set(enable_latex_docs NO) +set(enable_mathjax NO) set(enable_xml_docs YES) configure_file( diff --git a/docs/doxygen/Doxyfile.in b/docs/doxygen/Doxyfile.in index fb84114..d181ade 100644 --- a/docs/doxygen/Doxyfile.in +++ b/docs/doxygen/Doxyfile.in @@ -199,13 +199,6 @@ TAB_SIZE = 8 ALIASES = -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding -# "class=itcl::class" will allow you to use the command class in the -# itcl::class meaning. - -TCL_SUBST = - # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C # sources only. Doxygen will then generate output that is more tailored for C. # For instance, some of the names that are used will be different. The list @@ -723,8 +716,6 @@ EXCLUDE_PATTERNS = */.deps/* \ EXCLUDE_SYMBOLS = ad9862 \ numpy \ - *swig* \ - *Swig* \ *my_top_block* \ *my_graph* \ *app_top_block* \ @@ -790,7 +781,7 @@ INPUT_FILTER = # info on how filters are used. If FILTER_PATTERNS is empty or if # non of the patterns match the file name, INPUT_FILTER is applied. -FILTER_PATTERNS = *.py="@top_srcdir@"/doc/doxygen/other/doxypy.py +FILTER_PATTERNS = *.py=@top_srcdir@/docs/doxygen/other/doxypy.py # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source @@ -879,12 +870,6 @@ VERBATIM_HEADERS = YES ALPHABETICAL_INDEX = YES -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - # In case all classes in a project start with a common prefix, all # classes will be put under the same header in the alphabetical index. # The IGNORE_PREFIX tag can be used to specify one or more prefixes that @@ -1220,14 +1205,14 @@ FORMULA_TRANSPARENT = YES # output. When enabled you may also need to install MathJax separately and # configure the path to it using the MATHJAX_RELPATH option. -USE_MATHJAX = NO +USE_MATHJAX = @enable_mathjax@ # When MathJax is enabled you can set the default output format to be used for # the MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and # SVG. The default value is HTML-CSS, which is slower, but has the best # compatibility. -MATHJAX_FORMAT = HTML-CSS +MATHJAX_FORMAT = SVG # When MathJax is enabled you need to specify the location relative to the # HTML output directory using the MATHJAX_RELPATH option. The destination @@ -1239,12 +1224,12 @@ MATHJAX_FORMAT = HTML-CSS # However, it is strongly recommended to install a local # copy of MathJax from http://www.mathjax.org before deployment. -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest +MATHJAX_RELPATH = @MATHJAX2_PATH@ # The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension # names that should be enabled during MathJax rendering. -MATHJAX_EXTENSIONS = +MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # The MATHJAX_CODEFILE tag can be used to specify a file with javascript # pieces of code that will be used on startup of the MathJax code. @@ -1680,11 +1665,6 @@ EXTERNAL_GROUPS = YES EXTERNAL_PAGES = YES -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of `which perl'). - -PERL_PATH = /usr/bin/perl - #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- @@ -1697,15 +1677,6 @@ PERL_PATH = /usr/bin/perl CLASS_DIAGRAMS = YES -# You can define message sequence charts within doxygen comments using the \msc -# command. Doxygen will then run the mscgen tool (see -# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the -# documentation. The MSCGEN_PATH tag allows you to specify the directory where -# the mscgen tool resides. If left empty the tool is assumed to be found in the -# default search path. - -MSCGEN_PATH = - # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. @@ -1834,7 +1805,7 @@ DIRECTORY_GRAPH = YES # HTML_FILE_EXTENSION to xhtml in order to make the SVG files # visible in IE 9+ (other browsers do not have this requirement). -DOT_IMAGE_FORMAT = png +DOT_IMAGE_FORMAT = svg # If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to # enable generation of interactive SVG images that allow zooming and panning. diff --git a/docs/doxygen/Doxyfile.swig_doc.in b/docs/doxygen/Doxyfile.swig_doc.in deleted file mode 100644 index cbe06d6..0000000 --- a/docs/doxygen/Doxyfile.swig_doc.in +++ /dev/null @@ -1,1878 +0,0 @@ -# Doxyfile 1.8.4 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a double hash (##) is considered a comment and is placed -# in front of the TAG it is preceding . -# All text after a hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" "). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all -# text before the first occurrence of this tag. Doxygen uses libiconv (or the -# iconv built into libc) for the transcoding. See -# http://www.gnu.org/software/libiconv for the list of possible encodings. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or sequence of words) that should -# identify the project. Note that if you do not use Doxywizard you need -# to put quotes around the project name if it contains spaces. - -PROJECT_NAME = @CPACK_PACKAGE_NAME@ - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or -# if some version control system is used. - -PROJECT_NUMBER = @CPACK_PACKAGE_VERSION@ - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer -# a quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = - -# With the PROJECT_LOGO tag one can specify an logo or icon that is -# included in the documentation. The maximum height of the logo should not -# exceed 55 pixels and the maximum width should not exceed 200 pixels. -# Doxygen will copy the logo to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location -# where doxygen was started. If left blank the current directory will be used. - -OUTPUT_DIRECTORY = "@OUTPUT_DIRECTORY@" - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would -# otherwise cause performance problems for the file system. - -CREATE_SUBDIRS = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, -# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, -# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English -# messages), Korean, Korean-en, Latvian, Lithuanian, Norwegian, Macedonian, -# Persian, Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, -# Slovak, Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). -# Set to NO to disable this. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" -# "represents" "a" "an" "the" - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief -# description. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set -# to NO the shortest path that makes the file name unique will be used. - -FULL_PATH_NAMES = NO - -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the -# path to strip. Note that you specify absolute paths here, but also -# relative paths, which will be relative from the directory where doxygen is -# started. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that -# are normally passed to the compiler using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful if your file system -# doesn't support long names like on DOS, Mac, or CD-ROM. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like regular Qt-style comments -# (thus requiring an explicit @brief command for a brief description.) - -JAVADOC_AUTOBRIEF = NO - -# If the QT_AUTOBRIEF tag is set to YES then Doxygen will -# interpret the first line (until the first dot) of a Qt-style -# comment as the brief description. If set to NO, the comments -# will behave just like regular Qt-style comments (thus requiring -# an explicit \brief command for a brief description.) - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen -# treat a multi-line C++ special comment block (i.e. a block of //! or /// -# comments) as a brief description. This used to be the default behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed -# description. Set this tag to YES if you prefer the old behaviour instead. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it -# re-implements. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will -# be part of the file/class/namespace that contains it. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. -# Doxygen uses this value to replace tabs by spaces in code fragments. - -TAB_SIZE = 8 - -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. - -ALIASES = - -# This tag can be used to specify a number of word-keyword mappings (TCL only). -# A mapping has the form "name=value". For example adding -# "class=itcl::class" will allow you to use the command class in the -# itcl::class meaning. - -TCL_SUBST = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = NO - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java -# sources only. Doxygen will then generate output that is more tailored for -# Java. For instance, namespaces will be presented as packages, qualified -# scopes will look different, etc. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources only. Doxygen will then generate output that is more tailored for -# Fortran. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for -# VHDL. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, -# and language is one of the parsers supported by doxygen: IDL, Java, -# Javascript, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, -# C++. For instance to make doxygen treat .inc files as Fortran files (default -# is PHP), and .f files as C (default is Fortran), use: inc=Fortran f=C. Note -# that for custom extensions you also need to set FILE_PATTERNS otherwise the -# files are not read by doxygen. - -EXTENSION_MAPPING = - -# If MARKDOWN_SUPPORT is enabled (the default) then doxygen pre-processes all -# comments according to the Markdown format, which allows for more readable -# documentation. See http://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you -# can mix doxygen, HTML, and XML commands with Markdown formatting. -# Disable only in case of backward compatibilities issues. - -MARKDOWN_SUPPORT = YES - -# When enabled doxygen tries to link words that correspond to documented -# classes, or namespaces to their corresponding documentation. Such a link can -# be prevented in individual cases by by putting a % sign in front of the word -# or globally by setting AUTOLINK_SUPPORT to NO. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should -# set this tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. -# func(std::string) {}). This also makes the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. - -BUILTIN_STL_SUPPORT = YES - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. -# Doxygen will parse them like normal C++ but will assume all classes use public -# instead of private inheritance when no explicit protection keyword is present. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES (the -# default) will make doxygen replace the get and set methods by a property in -# the documentation. This will only work if the methods are indeed getting or -# setting a simple type. If this is not the case, or you want to show the -# methods anyway, you should set this option to NO. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. - -DISTRIBUTE_GROUP_DOC = NO - -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of -# the same type (for instance a group of public functions) to be put as a -# subgroup of that type (e.g. under the Public Functions section). Set it to -# NO to prevent subgrouping. Alternatively, this can be done per class using -# the \nosubgrouping command. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and -# unions are shown inside the group in which they are included (e.g. using -# @ingroup) instead of on a separate page (for HTML and Man pages) or -# section (for LaTeX and RTF). - -INLINE_GROUPED_CLASSES = NO - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and -# unions with only public data fields or simple typedef fields will be shown -# inline in the documentation of the scope in which they are defined (i.e. file, -# namespace, or group documentation), provided this scope is documented. If set -# to NO (the default), structs, classes, and unions are shown on a separate -# page (for HTML and Man pages) or section (for LaTeX and RTF). - -INLINE_SIMPLE_STRUCTS = NO - -# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum -# is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically -# be useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. - -TYPEDEF_HIDES_STRUCT = NO - -# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -# cache is used to resolve symbols given their name and scope. Since this can -# be an expensive process and often the same symbol appear multiple times in -# the code, doxygen keeps a cache of pre-resolved symbols. If the cache is too -# small doxygen will become slower. If the cache is too large, memory is wasted. -# The cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid -# range is 0..9, the default is 0, corresponding to a cache size of 2^16 = 65536 -# symbols. - -LOOKUP_CACHE_SIZE = 0 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless -# the EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES - -EXTRACT_ALL = YES - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class -# will be included in the documentation. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal -# scope will be included in the documentation. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES all static members of a file -# will be included in the documentation. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. -# If set to NO only classes defined in header files are included. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. -# If set to NO (the default) only methods in the interface are included. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base -# name of the file that contains the anonymous namespace. By default -# anonymous namespaces are hidden. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. -# This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various -# overviews. This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the -# documentation. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the -# function's detailed documentation block. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. -# Set it to YES to include the internal documentation. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the -# documentation. If set to YES the scope will be hidden. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation -# of that file. - -SHOW_INCLUDE_FILES = YES - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen -# will list include files with double quotes in the documentation -# rather than with sharp brackets. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] -# is inserted in the documentation for inline members. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in -# declaration order. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen -# will sort the (brief and detailed) documentation of class members so that -# constructors and destructors are listed first. If set to NO (the default) -# the constructors will appear in the respective orders defined by -# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. -# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO -# and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the -# hierarchy of group names into alphabetical order. If set to NO (the default) -# the group names will appear in their defined order. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the -# alphabetical list. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to -# do proper type resolution of all parameters of a function it will reject a -# match between the prototype and the implementation of a member function even -# if there is only one candidate or it is obvious which candidate to choose -# by doing a simple string match. By disabling STRICT_PROTO_MATCHING doxygen -# will still accept a match between prototype and implementation in such cases. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo -# commands in the documentation. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test -# commands in the documentation. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug -# commands in the documentation. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting -# \deprecated commands in the documentation. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if section-label ... \endif -# and \cond section-label ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or macro consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and macros in the -# documentation can be controlled using \showinitializer or \hideinitializer -# command in the documentation regardless of this setting. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the -# list will mention the files that were used to generate the documentation. - -SHOW_USED_FILES = YES - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. -# This will remove the Files entry from the Quick Index and from the -# Folder Tree View (if specified). The default is YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the -# Namespaces page. -# This will remove the Namespaces entry from the Quick Index -# and from the Folder Tree View (if specified). The default is YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command , where is the value of -# the FILE_VERSION_FILTER tag, and is the name of an input file -# provided by doxygen. Whatever the program writes to standard output -# is used as the file version. See the manual for examples. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. -# You can optionally specify a file name after the option, if omitted -# DoxygenLayout.xml will be used as the name of the layout file. - -LAYOUT_FILE = - -# The CITE_BIB_FILES tag can be used to specify one or more bib files -# containing the references data. This must be a list of .bib files. The -# .bib extension is automatically appended if omitted. Using this command -# requires the bibtex tool to be installed. See also -# http://en.wikipedia.org/wiki/BibTeX for more info. For LaTeX the style -# of the bibliography can be controlled using LATEX_BIB_STYLE. To use this -# feature you need bibtex and perl available in the search path. Do not use -# file names with spaces, bibtex cannot handle them. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated -# by doxygen. Possible values are YES and NO. If left blank NO is used. - -QUIET = YES - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank -# NO is used. - -WARNINGS = YES - -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will -# automatically be disabled. - -WARN_IF_UNDOCUMENTED = YES - -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that -# don't exist or using markup commands wrongly. - -WARN_IF_DOC_ERROR = YES - -# The WARN_NO_PARAMDOC option can be enabled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of -# documentation. - -WARN_NO_PARAMDOC = NO - -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could -# be obtained via FILE_VERSION_FILTER) - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written -# to stderr. - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = @INPUT_PATHS@ - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is -# also the default input encoding. Doxygen uses libiconv (or the iconv built -# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for -# the list of possible encodings. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh -# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py -# *.f90 *.f *.for *.vhd *.vhdl - -FILE_PATTERNS = *.h - -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. -# If left blank NO is used. - -RECURSIVE = YES - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories -# for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see -# the \include command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank all files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude -# commands irrespective of the value of the RECURSIVE tag. -# Possible values are YES and NO. If left blank NO is used. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see -# the \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command , where -# is the value of the INPUT_FILTER tag, and is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. -# If FILTER_PATTERNS is specified, this tag will be ignored. -# Note that the filter must not add or remove lines; it is applied before the -# code is scanned, but not when the output code is generated. If lines are added -# or removed, the anchors will not be placed correctly. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. -# Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. -# The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty or if -# non of the patterns match the file name, INPUT_FILTER is applied. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source -# files to browse (i.e. when SOURCE_BROWSER is set to YES). - -FILTER_SOURCE_FILES = NO - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) -# and it is also possible to disable source filtering for a specific pattern -# using *.ext= (so without naming a filter). This option only has effect when -# FILTER_SOURCE_FILES is enabled. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page -# (index.html). This can be useful if you have a project on for instance GitHub -# and want reuse the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE = - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also -# VERBATIM_HEADERS is set to NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body -# of functions and classes directly in the documentation. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code -# fragments. Normal C, C++ and Fortran comments will always remain visible. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES -# then for each documented function all documented -# functions referencing it will be listed. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES -# then for each documented function all documented entities -# called/used by that function will be listed. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) -# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from -# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will -# link to the source code. -# Otherwise they will link to the documentation. - -REFERENCES_LINK_SOURCE = YES - -# If the USE_HTAGS tag is set to YES then the references to source code -# will point to the HTML generated by the htags(1) tool instead of doxygen -# built-in source browser. The htags tool is part of GNU's global source -# tagging system (see http://www.gnu.org/software/global/global.html). You -# will need version 4.8.6 or higher. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for -# which an include is specified. Set to NO to disable this. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project -# contains a lot of classes, structs, unions or interfaces. - -ALPHABETICAL_INDEX = NO - -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that -# should be ignored while generating the index headers. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = NO - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `html' will be used as the default path. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank -# doxygen will generate files with .html extension. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. Note that when using a custom header you are responsible -# for the proper inclusion of any scripts and style sheets that doxygen -# needs, which is dependent on the configuration options used. -# It is advised to generate a default header using "doxygen -w html -# header.html footer.html stylesheet.css YourConfigFile" and then modify -# that header. Note that the header is subject to change so you typically -# have to redo this when upgrading to a newer version of doxygen or when -# changing the value of configuration settings such as GENERATE_TREEVIEW! - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard footer. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If left blank doxygen will -# generate a default style sheet. Note that it is recommended to use -# HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this -# tag will in the future become obsolete. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional -# user-defined cascading style sheet that is included after the standard -# style sheets created by doxygen. Using this option one can overrule -# certain style aspects. This is preferred over using HTML_STYLESHEET -# since it does not replace the standard style sheet and is therefore more -# robust against future updates. Doxygen will copy the style sheet file to -# the output directory. - -HTML_EXTRA_STYLESHEET = - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that -# the files will be copied as-is; there are no commands or markers available. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. -# Doxygen will adjust the colors in the style sheet and background images -# according to this color. Hue is specified as an angle on a colorwheel, -# see http://en.wikipedia.org/wiki/Hue for more information. -# For instance the value 0 represents red, 60 is yellow, 120 is green, -# 180 is cyan, 240 is blue, 300 purple, and 360 is red again. -# The allowed range is 0 to 359. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of -# the colors in the HTML output. For a value of 0 the output will use -# grayscales only. A value of 255 will produce the most vivid colors. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to -# the luminance component of the colors in the HTML output. Values below -# 100 gradually make the output lighter, whereas values above 100 make -# the output darker. The value divided by 100 is the actual gamma applied, -# so 80 represents a gamma of 0.8, The value 220 represents a gamma of 2.2, -# and 100 does not change the gamma. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting -# this to NO can help when comparing the output of multiple runs. - -HTML_TIMESTAMP = NO - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of -# entries shown in the various tree structured indices initially; the user -# can expand and collapse entries dynamically later on. Doxygen will expand -# the tree to such a level that at most the specified number of entries are -# visible (unless a fully collapsed tree already exceeds this amount). -# So setting the number of entries 1 will produce a full collapsed tree by -# default. 0 is a special value representing an infinite number of entries -# and will result in a full expanded tree by default. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files -# will be generated that can be used as input for Apple's Xcode 3 -# integrated development environment, introduced with OSX 10.5 (Leopard). -# To create a documentation set, doxygen will generate a Makefile in the -# HTML output directory. Running make will produce the docset in that -# directory and running "make install" will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find -# it at startup. -# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html -# for more information. - -GENERATE_DOCSET = NO - -# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the -# feed. A documentation feed provides an umbrella under which multiple -# documentation sets from a single provider (such as a company or product suite) -# can be grouped. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that -# should uniquely identify the documentation set bundle. This should be a -# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen -# will append .docset to the name. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# When GENERATE_PUBLISHER_ID tag specifies a string that should uniquely -# identify the documentation publisher. This should be a reverse domain-name -# style string, e.g. com.mycompany.MyDocSet.documentation. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) -# of the generated HTML documentation. - -GENERATE_HTMLHELP = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be -# written to the html output directory. - -CHM_FILE = - -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run -# the HTML help compiler on the generated index.hhp. - -HHC_LOCATION = - -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that -# it should be included in the master .chm file (NO). - -GENERATE_CHI = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING -# is used to encode HtmlHelp index (hhk), content (hhc) and project file -# content. - -CHM_INDEX_ENCODING = - -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a -# normal table of contents (NO) in the .chm file. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members -# to the contents of the HTML help documentation and to the tree view. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated -# that can be used as input for Qt's qhelpgenerator to generate a -# Qt Compressed Help (.qch) of the generated HTML documentation. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can -# be used to specify the file name of the resulting .qch file. -# The path specified is relative to the HTML output folder. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating -# Qt Help Project output. For more information please see -# http://doc.trolltech.com/qthelpproject.html#namespace - -QHP_NAMESPACE = - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating -# Qt Help Project output. For more information please see -# http://doc.trolltech.com/qthelpproject.html#virtual-folders - -QHP_VIRTUAL_FOLDER = doc - -# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to -# add. For more information please see -# http://doc.trolltech.com/qthelpproject.html#custom-filters - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see -# -# Qt Help Project / Custom Filters. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's -# filter section matches. -# -# Qt Help Project / Filter Attributes. - -QHP_SECT_FILTER_ATTRS = - -# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can -# be used to specify the location of Qt's qhelpgenerator. -# If non-empty doxygen will try to run qhelpgenerator on the generated -# .qhp file. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files -# will be generated, which together with the HTML files, form an Eclipse help -# plugin. To install this plugin and make it available under the help contents -# menu in Eclipse, the contents of the directory containing the HTML and XML -# files needs to be copied into the plugins directory of eclipse. The name of -# the directory within the plugins directory should be the same as -# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before -# the help appears. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have -# this name. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) -# at top of each HTML page. The value NO (the default) enables the index and -# the value YES disables it. Since the tabs have the same information as the -# navigation tree you can set this option to NO if you already set -# GENERATE_TREEVIEW to YES. - -DISABLE_INDEX = NO - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. -# If the tag value is set to YES, a side panel will be generated -# containing a tree-like index structure (just like the one that -# is generated for HTML Help). For this to work a browser that supports -# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). -# Windows users are probably better off using the HTML help feature. -# Since the tree basically has the same information as the tab index you -# could consider to set DISABLE_INDEX to NO when enabling this option. - -GENERATE_TREEVIEW = NO - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values -# (range [0,1..20]) that doxygen will group on one line in the generated HTML -# documentation. Note that a value of 0 will completely suppress the enum -# values from appearing in the overview section. - -ENUM_VALUES_PER_LINE = 4 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be -# used to set the initial width (in pixels) of the frame in which the tree -# is shown. - -TREEVIEW_WIDTH = 250 - -# When the EXT_LINKS_IN_WINDOW option is set to YES doxygen will open -# links to external symbols imported via tag files in a separate window. - -EXT_LINKS_IN_WINDOW = NO - -# Use this tag to change the font size of Latex formulas included -# as images in the HTML documentation. The default is 10. Note that -# when you change the font size after a successful doxygen run you need -# to manually remove any form_*.png images from the HTML output directory -# to force them to be regenerated. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are -# not supported properly for IE 6.0, but are supported on all modern browsers. -# Note that when changing this option you need to delete any form_*.png files -# in the HTML output before the changes have effect. - -FORMULA_TRANSPARENT = YES - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax -# (see http://www.mathjax.org) which uses client side Javascript for the -# rendering instead of using prerendered bitmaps. Use this if you do not -# have LaTeX installed or if you want to formulas look prettier in the HTML -# output. When enabled you may also need to install MathJax separately and -# configure the path to it using the MATHJAX_RELPATH option. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# the MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and -# SVG. The default value is HTML-CSS, which is slower, but has the best -# compatibility. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the -# HTML output directory using the MATHJAX_RELPATH option. The destination -# directory should contain the MathJax.js script. For instance, if the mathjax -# directory is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to -# the MathJax Content Delivery Network so you can quickly see the result without -# installing MathJax. -# However, it is strongly recommended to install a local -# copy of MathJax from http://www.mathjax.org before deployment. - -MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest - -# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension -# names that should be enabled during MathJax rendering. - -MATHJAX_EXTENSIONS = - -# The MATHJAX_CODEFILE tag can be used to specify a file with javascript -# pieces of code that will be used on startup of the MathJax code. - -MATHJAX_CODEFILE = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box -# for the HTML output. The underlying search engine uses javascript -# and DHTML and should work on any modern browser. Note that when using -# HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets -# (GENERATE_DOCSET) there is already a search function so this one should -# typically be disabled. For large projects the javascript based search engine -# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. - -SEARCHENGINE = YES - -# When the SERVER_BASED_SEARCH tag is enabled the search engine will be -# implemented using a web server instead of a web client using Javascript. -# There are two flavours of web server based search depending on the -# EXTERNAL_SEARCH setting. When disabled, doxygen will generate a PHP script for -# searching and an index file used by the script. When EXTERNAL_SEARCH is -# enabled the indexing and searching needs to be provided by external tools. -# See the manual for details. - -SERVER_BASED_SEARCH = NO - -# When EXTERNAL_SEARCH is enabled doxygen will no longer generate the PHP -# script for searching. Instead the search results are written to an XML file -# which needs to be processed by an external indexer. Doxygen will invoke an -# external search engine pointed to by the SEARCHENGINE_URL option to obtain -# the search results. Doxygen ships with an example indexer (doxyindexer) and -# search engine (doxysearch.cgi) which are based on the open source search -# engine library Xapian. See the manual for configuration details. - -EXTERNAL_SEARCH = NO - -# The SEARCHENGINE_URL should point to a search engine hosted by a web server -# which will returned the search results when EXTERNAL_SEARCH is enabled. -# Doxygen ships with an example search engine (doxysearch) which is based on -# the open source search engine library Xapian. See the manual for configuration -# details. - -SEARCHENGINE_URL = - -# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed -# search data is written to a file for indexing by an external tool. With the -# SEARCHDATA_FILE tag the name of this file can be specified. - -SEARCHDATA_FILE = searchdata.xml - -# When SERVER_BASED_SEARCH AND EXTERNAL_SEARCH are both enabled the -# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is -# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple -# projects and redirect the results back to the right project. - -EXTERNAL_SEARCH_ID = - -# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen -# projects other than the one defined by this configuration file, but that are -# all added to the same external search index. Each project needs to have a -# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id -# of to a relative location where the documentation can be found. -# The format is: EXTRA_SEARCH_MAPPINGS = id1=loc1 id2=loc2 ... - -EXTRA_SEARCH_MAPPINGS = - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- - -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will -# generate Latex output. - -GENERATE_LATEX = NO - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. -# Note that when enabling USE_PDFLATEX this option is only used for -# generating bitmaps for formulas in the HTML output, but not in the -# Makefile that is written to the output directory. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = NO - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, letter, legal and -# executive. If left blank a4 will be used. - -PAPER_TYPE = a4wide - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = - -# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for -# the generated latex document. The footer should contain everything after -# the last chapter. If it is left blank doxygen will generate a -# standard footer. Notice: only use this tag if you know what you are doing! - -LATEX_FOOTER = - -# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images -# or other source files which should be copied to the LaTeX output directory. -# Note that the files will be copied as-is; there are no commands or markers -# available. - -LATEX_EXTRA_FILES = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = YES - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = YES - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = NO - -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) -# in the output. - -LATEX_HIDE_INDICES = NO - -# If LATEX_SOURCE_CODE is set to YES then doxygen will include -# source code with syntax highlighting in the LaTeX output. -# Note that which sources are shown also depends on other settings -# such as SOURCE_BROWSER. - -LATEX_SOURCE_CODE = NO - -# The LATEX_BIB_STYLE tag can be used to specify the style to use for the -# bibliography, e.g. plainnat, or ieeetr. The default style is "plain". See -# http://en.wikipedia.org/wiki/BibTeX for more info. - -LATEX_BIB_STYLE = plain - -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- - -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output -# The RTF output is optimized for Word 97 and may not look very pretty with -# other RTF readers or editors. - -GENERATE_RTF = NO - -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `rtf' will be used as the default path. - -RTF_OUTPUT = rtf - -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact -# RTF documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_RTF = NO - -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated -# will contain hyperlink fields. The RTF file will -# contain links (just like the HTML output) instead of page references. -# This makes the output suitable for online browsing using WORD or other -# programs which support those fields. -# Note: wordpad (write) and others do not support links. - -RTF_HYPERLINKS = NO - -# Load style sheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assignments. You only have to provide -# replacements, missing definitions are set to their default value. - -RTF_STYLESHEET_FILE = - -# Set optional variables used in the generation of an rtf document. -# Syntax is similar to doxygen's config file. - -RTF_EXTENSIONS_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- - -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will -# generate man pages - -GENERATE_MAN = NO - -# The MAN_OUTPUT tag is used to specify where the man pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `man' will be used as the default path. - -MAN_OUTPUT = man - -# The MAN_EXTENSION tag determines the extension that is added to -# the generated man pages (default is the subroutine's section .3) - -MAN_EXTENSION = .3 - -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, -# then it will generate one additional man file for each entity -# documented in the real man page(s). These additional files -# only source the real man page, but without them the man command -# would be unable to find the correct page. The default is NO. - -MAN_LINKS = NO - -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- - -# If the GENERATE_XML tag is set to YES Doxygen will -# generate an XML file that captures the structure of -# the code including all documentation. - -GENERATE_XML = YES - -# The XML_OUTPUT tag is used to specify where the XML pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `xml' will be used as the default path. - -XML_OUTPUT = xml - -# If the XML_PROGRAMLISTING tag is set to YES Doxygen will -# dump the program listings (including syntax highlighting -# and cross-referencing information) to the XML output. Note that -# enabling this will significantly increase the size of the XML output. - -XML_PROGRAMLISTING = YES - -#--------------------------------------------------------------------------- -# configuration options related to the DOCBOOK output -#--------------------------------------------------------------------------- - -# If the GENERATE_DOCBOOK tag is set to YES Doxygen will generate DOCBOOK files -# that can be used to generate PDF. - -GENERATE_DOCBOOK = NO - -# The DOCBOOK_OUTPUT tag is used to specify where the DOCBOOK pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in -# front of it. If left blank docbook will be used as the default path. - -DOCBOOK_OUTPUT = docbook - -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- - -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will -# generate an AutoGen Definitions (see autogen.sf.net) file -# that captures the structure of the code including all -# documentation. Note that this feature is still experimental -# and incomplete at the moment. - -GENERATE_AUTOGEN_DEF = NO - -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- - -# If the GENERATE_PERLMOD tag is set to YES Doxygen will -# generate a Perl module file that captures the structure of -# the code including all documentation. Note that this -# feature is still experimental and incomplete at the -# moment. - -GENERATE_PERLMOD = NO - -# If the PERLMOD_LATEX tag is set to YES Doxygen will generate -# the necessary Makefile rules, Perl scripts and LaTeX code to be able -# to generate PDF and DVI output from the Perl module output. - -PERLMOD_LATEX = NO - -# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be -# nicely formatted so it can be parsed by a human reader. -# This is useful -# if you want to understand what is going on. -# On the other hand, if this -# tag is set to NO the size of the Perl module output will be much smaller -# and Perl will parse it just the same. - -PERLMOD_PRETTY = YES - -# The names of the make variables in the generated doxyrules.make file -# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. -# This is useful so different doxyrules.make files included by the same -# Makefile don't overwrite each other's variables. - -PERLMOD_MAKEVAR_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- - -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include -# files. - -ENABLE_PREPROCESSING = YES - -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro -# names in the source code. If set to NO (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled -# way by setting EXPAND_ONLY_PREDEF to YES. - -MACRO_EXPANSION = YES - -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES -# then the macro expansion is limited to the macros specified with the -# PREDEFINED and EXPAND_AS_DEFINED tags. - -EXPAND_ONLY_PREDEF = NO - -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# pointed to by INCLUDE_PATH will be searched when a #include is found. - -SEARCH_INCLUDES = YES - -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by -# the preprocessor. - -INCLUDE_PATH = - -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will -# be used. - -INCLUDE_FILE_PATTERNS = - -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator -# instead of the = operator. - -PREDEFINED = - -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. -# Use the PREDEFINED tag if you want to use a different macro definition that -# overrules the definition found in the source code. - -EXPAND_AS_DEFINED = - -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all references to function-like macros -# that are alone on a line, have an all uppercase name, and do not end with a -# semicolon, because these will confuse the parser if not removed. - -SKIP_FUNCTION_MACROS = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- - -# The TAGFILES option can be used to specify one or more tagfiles. For each -# tag file the location of the external documentation should be added. The -# format of a tag file without this location is as follows: -# -# TAGFILES = file1 file2 ... -# Adding location for the tag files is done as follows: -# -# TAGFILES = file1=loc1 "file2 = loc2" ... -# where "loc1" and "loc2" can be relative or absolute paths -# or URLs. Note that each tag file must have a unique name (where the name does -# NOT include the path). If a tag file is not located in the directory in which -# doxygen is run, you must also specify the path to the tagfile here. - -TAGFILES = - -# When a file name is specified after GENERATE_TAGFILE, doxygen will create -# a tag file that is based on the input files it reads. - -GENERATE_TAGFILE = - -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes -# will be listed. - -ALLEXTERNALS = NO - -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will -# be listed. - -EXTERNAL_GROUPS = YES - -# If the EXTERNAL_PAGES tag is set to YES all external pages will be listed -# in the related pages index. If set to NO, only the current project's -# pages will be listed. - -EXTERNAL_PAGES = YES - -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of `which perl'). - -PERL_PATH = /usr/bin/perl - -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- - -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option also works with HAVE_DOT disabled, but it is recommended to -# install and use dot, since it yields more powerful graphs. - -CLASS_DIAGRAMS = YES - -# You can define message sequence charts within doxygen comments using the \msc -# command. Doxygen will then run the mscgen tool (see -# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the -# documentation. The MSCGEN_PATH tag allows you to specify the directory where -# the mscgen tool resides. If left empty the tool is assumed to be found in the -# default search path. - -MSCGEN_PATH = - -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented -# or is not a class. - -HIDE_UNDOC_RELATIONS = YES - -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is -# available from the path. This tool is part of Graphviz, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section -# have no effect if this option is set to NO (the default) - -HAVE_DOT = NO - -# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is -# allowed to run in parallel. When set to 0 (the default) doxygen will -# base this on the number of processors available in the system. You can set it -# explicitly to a value larger than 0 to get control over the balance -# between CPU load and processing speed. - -DOT_NUM_THREADS = 0 - -# By default doxygen will use the Helvetica font for all dot files that -# doxygen generates. When you want a differently looking font you can specify -# the font name using DOT_FONTNAME. You need to make sure dot is able to find -# the font, which can be done by putting it in a standard location or by setting -# the DOTFONTPATH environment variable or by setting DOT_FONTPATH to the -# directory containing the font. - -DOT_FONTNAME = Helvetica - -# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. -# The default size is 10pt. - -DOT_FONTSIZE = 10 - -# By default doxygen will tell dot to use the Helvetica font. -# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to -# set the path where dot can find it. - -DOT_FONTPATH = - -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect inheritance relations. Setting this tag to YES will force the -# CLASS_DIAGRAMS tag to NO. - -CLASS_GRAPH = YES - -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and -# class references variables) of the class with other documented classes. - -COLLABORATION_GRAPH = YES - -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for groups, showing the direct groups dependencies - -GROUP_GRAPHS = YES - -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and -# collaboration diagrams in a style similar to the OMG's Unified Modeling -# Language. - -UML_LOOK = NO - -# If the UML_LOOK tag is enabled, the fields and methods are shown inside -# the class node. If there are many fields or methods and many nodes the -# graph may become too big to be useful. The UML_LIMIT_NUM_FIELDS -# threshold limits the number of items for each type to make the size more -# manageable. Set this to 0 for no limit. Note that the threshold may be -# exceeded by 50% before the limit is enforced. - -UML_LIMIT_NUM_FIELDS = 10 - -# If set to YES, the inheritance and collaboration graphs will show the -# relations between templates and their instances. - -TEMPLATE_RELATIONS = NO - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# tags are set to YES then doxygen will generate a graph for each documented -# file showing the direct and indirect include dependencies of the file with -# other documented files. - -INCLUDE_GRAPH = YES - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or -# indirectly include this file. - -INCLUDED_BY_GRAPH = YES - -# If the CALL_GRAPH and HAVE_DOT options are set to YES then -# doxygen will generate a call dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable call graphs -# for selected functions only using the \callgraph command. - -CALL_GRAPH = NO - -# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then -# doxygen will generate a caller dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable caller -# graphs for selected functions only using the \callergraph command. - -CALLER_GRAPH = NO - -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen -# will generate a graphical hierarchy of all classes instead of a textual one. - -GRAPHICAL_HIERARCHY = YES - -# If the DIRECTORY_GRAPH and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories -# in a graphical way. The dependency relations are determined by the #include -# relations between the files in the directories. - -DIRECTORY_GRAPH = YES - -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images -# generated by dot. Possible values are svg, png, jpg, or gif. -# If left blank png will be used. If you choose svg you need to set -# HTML_FILE_EXTENSION to xhtml in order to make the SVG files -# visible in IE 9+ (other browsers do not have this requirement). - -DOT_IMAGE_FORMAT = png - -# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to -# enable generation of interactive SVG images that allow zooming and panning. -# Note that this requires a modern browser other than Internet Explorer. -# Tested and working are Firefox, Chrome, Safari, and Opera. For IE 9+ you -# need to set HTML_FILE_EXTENSION to xhtml in order to make the SVG files -# visible. Older versions of IE do not have SVG support. - -INTERACTIVE_SVG = NO - -# The tag DOT_PATH can be used to specify the path where the dot tool can be -# found. If left blank, it is assumed the dot tool can be found in the path. - -DOT_PATH = - -# The DOTFILE_DIRS tag can be used to specify one or more directories that -# contain dot files that are included in the documentation (see the -# \dotfile command). - -DOTFILE_DIRS = - -# The MSCFILE_DIRS tag can be used to specify one or more directories that -# contain msc files that are included in the documentation (see the -# \mscfile command). - -MSCFILE_DIRS = - -# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of -# nodes that will be shown in the graph. If the number of nodes in a graph -# becomes larger than this value, doxygen will truncate the graph, which is -# visualized by representing a node as a red box. Note that doxygen if the -# number of direct children of the root node in a graph is already larger than -# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note -# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. - -DOT_GRAPH_MAX_NODES = 50 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that the size of a graph can be further restricted by -# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. - -MAX_DOT_GRAPH_DEPTH = 0 - -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is disabled by default, because dot on Windows does not -# seem to support this out of the box. Warning: Depending on the platform used, -# enabling this option may lead to badly anti-aliased labels on the edges of -# a graph (i.e. they become hard to read). - -DOT_TRANSPARENT = NO - -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) -# support this, this feature is disabled by default. - -DOT_MULTI_TARGETS = YES - -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and -# arrows in the dot generated graphs. - -GENERATE_LEGEND = YES - -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate -# the various graphs. - -DOT_CLEANUP = YES diff --git a/docs/doxygen/doxyxml/__init__.py b/docs/doxygen/doxyxml/__init__.py index c315086..abbd97f 100644 --- a/docs/doxygen/doxyxml/__init__.py +++ b/docs/doxygen/doxyxml/__init__.py @@ -4,20 +4,8 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. # """ Python interface to contents of doxygen xml documentation. @@ -64,10 +52,10 @@ u'Outputs the vital aadvark statistics.' """ -from __future__ import unicode_literals from .doxyindex import DoxyIndex, DoxyFunction, DoxyParam, DoxyClass, DoxyFile, DoxyNamespace, DoxyGroup, DoxyFriend, DoxyOther + def _test(): import os this_dir = os.path.dirname(globals()['__file__']) @@ -79,6 +67,6 @@ def _test(): import doctest return doctest.testmod() + if __name__ == "__main__": _test() - diff --git a/docs/doxygen/doxyxml/base.py b/docs/doxygen/doxyxml/base.py index 8cb14fd..ed07313 100644 --- a/docs/doxygen/doxyxml/base.py +++ b/docs/doxygen/doxyxml/base.py @@ -4,20 +4,8 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. # """ A base class is created. @@ -25,8 +13,6 @@ Classes based upon this are used to make more user-friendly interfaces to the doxygen xml docs than the generated classes provide. """ -from __future__ import print_function -from __future__ import unicode_literals import os import pdb @@ -97,8 +83,8 @@ def get_cls(self, mem): for cls in self.mem_classes: if cls.can_parse(mem): return cls - raise Exception(("Did not find a class for object '%s'." \ - % (mem.get_name()))) + raise Exception(("Did not find a class for object '%s'." + % (mem.get_name()))) def convert_mem(self, mem): try: diff --git a/docs/doxygen/doxyxml/doxyindex.py b/docs/doxygen/doxyxml/doxyindex.py index 591c921..d079286 100644 --- a/docs/doxygen/doxyxml/doxyindex.py +++ b/docs/doxygen/doxyxml/doxyindex.py @@ -4,27 +4,13 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. # """ Classes providing more user-friendly interfaces to the doxygen xml docs than the generated classes provide. """ -from __future__ import absolute_import -from __future__ import unicode_literals import os @@ -32,6 +18,7 @@ from .base import Base from .text import description + class DoxyIndex(Base): """ Parses a doxygen xml directory. @@ -60,17 +47,8 @@ def _parse(self): self._members.append(converted) -def generate_swig_doc_i(self): - """ - %feature("docstring") gr_make_align_on_samplenumbers_ss::align_state " - Wraps the C++: gr_align_on_samplenumbers_ss::align_state"; - """ - pass - - class DoxyCompMem(Base): - kind = None def __init__(self, *args, **kwargs): @@ -106,9 +84,11 @@ def set_parameters(self, data): class DoxyCompound(DoxyCompMem): pass + class DoxyMember(DoxyCompMem): pass + class DoxyFunction(DoxyMember): __module__ = "gnuradio.utils.doxyxml" @@ -129,9 +109,11 @@ def _parse(self): self._data['params'].append(DoxyParam(prm)) brief_description = property(lambda self: self.data()['brief_description']) - detailed_description = property(lambda self: self.data()['detailed_description']) + detailed_description = property( + lambda self: self.data()['detailed_description']) params = property(lambda self: self.data()['params']) + Base.mem_classes.append(DoxyFunction) @@ -156,9 +138,11 @@ def description(self): return '\n\n'.join(descriptions) brief_description = property(lambda self: self.data()['brief_description']) - detailed_description = property(lambda self: self.data()['detailed_description']) + detailed_description = property( + lambda self: self.data()['detailed_description']) name = property(lambda self: self.data()['declname']) + class DoxyParameterItem(DoxyMember): """A different representation of a parameter in Doxygen.""" @@ -200,9 +184,11 @@ def _parse(self): self.process_memberdefs() brief_description = property(lambda self: self.data()['brief_description']) - detailed_description = property(lambda self: self.data()['detailed_description']) + detailed_description = property( + lambda self: self.data()['detailed_description']) params = property(lambda self: self.data()['params']) + Base.mem_classes.append(DoxyClass) @@ -223,7 +209,9 @@ def _parse(self): self.process_memberdefs() brief_description = property(lambda self: self.data()['brief_description']) - detailed_description = property(lambda self: self.data()['detailed_description']) + detailed_description = property( + lambda self: self.data()['detailed_description']) + Base.mem_classes.append(DoxyFile) @@ -244,6 +232,7 @@ def _parse(self): return self.process_memberdefs() + Base.mem_classes.append(DoxyNamespace) @@ -287,6 +276,7 @@ class DoxyFriend(DoxyMember): kind = 'friend' + Base.mem_classes.append(DoxyFriend) @@ -301,4 +291,5 @@ class DoxyOther(Base): def can_parse(cls, obj): return obj.kind in cls.kinds + Base.mem_classes.append(DoxyOther) diff --git a/docs/doxygen/doxyxml/generated/__init__.py b/docs/doxygen/doxyxml/generated/__init__.py index 23095c1..3982397 100644 --- a/docs/doxygen/doxyxml/generated/__init__.py +++ b/docs/doxygen/doxyxml/generated/__init__.py @@ -5,4 +5,3 @@ resultant classes are not very friendly to navigate so the rest of the doxyxml module processes them further. """ -from __future__ import unicode_literals diff --git a/docs/doxygen/doxyxml/generated/compound.py b/docs/doxygen/doxyxml/generated/compound.py index acfa0dd..321328b 100644 --- a/docs/doxygen/doxyxml/generated/compound.py +++ b/docs/doxygen/doxyxml/generated/compound.py @@ -3,8 +3,6 @@ """ Generated Mon Feb 9 19:08:05 2009 by generateDS.py. """ -from __future__ import absolute_import -from __future__ import unicode_literals from xml.dom import minidom @@ -24,13 +22,15 @@ def find(self, details): return self.compounddef.find(details) + supermod.DoxygenType.subclass = DoxygenTypeSub # end class DoxygenTypeSub class compounddefTypeSub(supermod.compounddefType): def __init__(self, kind=None, prot=None, id=None, compoundname='', title='', basecompoundref=None, derivedcompoundref=None, includes=None, includedby=None, incdepgraph=None, invincdepgraph=None, innerdir=None, innerfile=None, innerclass=None, innernamespace=None, innerpage=None, innergroup=None, templateparamlist=None, sectiondef=None, briefdescription=None, detaileddescription=None, inheritancegraph=None, collaborationgraph=None, programlisting=None, location=None, listofallmembers=None): - supermod.compounddefType.__init__(self, kind, prot, id, compoundname, title, basecompoundref, derivedcompoundref, includes, includedby, incdepgraph, invincdepgraph, innerdir, innerfile, innerclass, innernamespace, innerpage, innergroup, templateparamlist, sectiondef, briefdescription, detaileddescription, inheritancegraph, collaborationgraph, programlisting, location, listofallmembers) + supermod.compounddefType.__init__(self, kind, prot, id, compoundname, title, basecompoundref, derivedcompoundref, includes, includedby, incdepgraph, invincdepgraph, innerdir, innerfile, innerclass, + innernamespace, innerpage, innergroup, templateparamlist, sectiondef, briefdescription, detaileddescription, inheritancegraph, collaborationgraph, programlisting, location, listofallmembers) def find(self, details): @@ -50,13 +50,18 @@ def find(self, details): class listofallmembersTypeSub(supermod.listofallmembersType): def __init__(self, member=None): supermod.listofallmembersType.__init__(self, member) + + supermod.listofallmembersType.subclass = listofallmembersTypeSub # end class listofallmembersTypeSub class memberRefTypeSub(supermod.memberRefType): def __init__(self, virt=None, prot=None, refid=None, ambiguityscope=None, scope='', name=''): - supermod.memberRefType.__init__(self, virt, prot, refid, ambiguityscope, scope, name) + supermod.memberRefType.__init__( + self, virt, prot, refid, ambiguityscope, scope, name) + + supermod.memberRefType.subclass = memberRefTypeSub # end class memberRefTypeSub @@ -64,6 +69,8 @@ def __init__(self, virt=None, prot=None, refid=None, ambiguityscope=None, scope= class compoundRefTypeSub(supermod.compoundRefType): def __init__(self, virt=None, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.compoundRefType.__init__(self, mixedclass_, content_) + + supermod.compoundRefType.subclass = compoundRefTypeSub # end class compoundRefTypeSub @@ -71,6 +78,8 @@ def __init__(self, virt=None, prot=None, refid=None, valueOf_='', mixedclass_=No class reimplementTypeSub(supermod.reimplementType): def __init__(self, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.reimplementType.__init__(self, mixedclass_, content_) + + supermod.reimplementType.subclass = reimplementTypeSub # end class reimplementTypeSub @@ -78,6 +87,8 @@ def __init__(self, refid=None, valueOf_='', mixedclass_=None, content_=None): class incTypeSub(supermod.incType): def __init__(self, local=None, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.incType.__init__(self, mixedclass_, content_) + + supermod.incType.subclass = incTypeSub # end class incTypeSub @@ -85,23 +96,26 @@ def __init__(self, local=None, refid=None, valueOf_='', mixedclass_=None, conten class refTypeSub(supermod.refType): def __init__(self, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): supermod.refType.__init__(self, mixedclass_, content_) + + supermod.refType.subclass = refTypeSub # end class refTypeSub - class refTextTypeSub(supermod.refTextType): def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): supermod.refTextType.__init__(self, mixedclass_, content_) + supermod.refTextType.subclass = refTextTypeSub # end class refTextTypeSub -class sectiondefTypeSub(supermod.sectiondefType): +class sectiondefTypeSub(supermod.sectiondefType): def __init__(self, kind=None, header='', description=None, memberdef=None): - supermod.sectiondefType.__init__(self, kind, header, description, memberdef) + supermod.sectiondefType.__init__( + self, kind, header, description, memberdef) def find(self, details): @@ -118,7 +132,10 @@ def find(self, details): class memberdefTypeSub(supermod.memberdefType): def __init__(self, initonly=None, kind=None, volatile=None, const=None, raise_=None, virt=None, readable=None, prot=None, explicit=None, new=None, final=None, writable=None, add=None, static=None, remove=None, sealed=None, mutable=None, gettable=None, inline=None, settable=None, id=None, templateparamlist=None, type_=None, definition='', argsstring='', name='', read='', write='', bitfield='', reimplements=None, reimplementedby=None, param=None, enumvalue=None, initializer=None, exceptions=None, briefdescription=None, detaileddescription=None, inbodydescription=None, location=None, references=None, referencedby=None): - supermod.memberdefType.__init__(self, initonly, kind, volatile, const, raise_, virt, readable, prot, explicit, new, final, writable, add, static, remove, sealed, mutable, gettable, inline, settable, id, templateparamlist, type_, definition, argsstring, name, read, write, bitfield, reimplements, reimplementedby, param, enumvalue, initializer, exceptions, briefdescription, detaileddescription, inbodydescription, location, references, referencedby) + supermod.memberdefType.__init__(self, initonly, kind, volatile, const, raise_, virt, readable, prot, explicit, new, final, writable, add, static, remove, sealed, mutable, gettable, inline, settable, id, templateparamlist, type_, + definition, argsstring, name, read, write, bitfield, reimplements, reimplementedby, param, enumvalue, initializer, exceptions, briefdescription, detaileddescription, inbodydescription, location, references, referencedby) + + supermod.memberdefType.subclass = memberdefTypeSub # end class memberdefTypeSub @@ -126,6 +143,8 @@ def __init__(self, initonly=None, kind=None, volatile=None, const=None, raise_=N class descriptionTypeSub(supermod.descriptionType): def __init__(self, title='', para=None, sect1=None, internal=None, mixedclass_=None, content_=None): supermod.descriptionType.__init__(self, mixedclass_, content_) + + supermod.descriptionType.subclass = descriptionTypeSub # end class descriptionTypeSub @@ -133,6 +152,8 @@ def __init__(self, title='', para=None, sect1=None, internal=None, mixedclass_=N class enumvalueTypeSub(supermod.enumvalueType): def __init__(self, prot=None, id=None, name='', initializer=None, briefdescription=None, detaileddescription=None, mixedclass_=None, content_=None): supermod.enumvalueType.__init__(self, mixedclass_, content_) + + supermod.enumvalueType.subclass = enumvalueTypeSub # end class enumvalueTypeSub @@ -140,13 +161,18 @@ def __init__(self, prot=None, id=None, name='', initializer=None, briefdescripti class templateparamlistTypeSub(supermod.templateparamlistType): def __init__(self, param=None): supermod.templateparamlistType.__init__(self, param) + + supermod.templateparamlistType.subclass = templateparamlistTypeSub # end class templateparamlistTypeSub class paramTypeSub(supermod.paramType): def __init__(self, type_=None, declname='', defname='', array='', defval=None, briefdescription=None): - supermod.paramType.__init__(self, type_, declname, defname, array, defval, briefdescription) + supermod.paramType.__init__( + self, type_, declname, defname, array, defval, briefdescription) + + supermod.paramType.subclass = paramTypeSub # end class paramTypeSub @@ -154,6 +180,8 @@ def __init__(self, type_=None, declname='', defname='', array='', defval=None, b class linkedTextTypeSub(supermod.linkedTextType): def __init__(self, ref=None, mixedclass_=None, content_=None): supermod.linkedTextType.__init__(self, mixedclass_, content_) + + supermod.linkedTextType.subclass = linkedTextTypeSub # end class linkedTextTypeSub @@ -161,6 +189,8 @@ def __init__(self, ref=None, mixedclass_=None, content_=None): class graphTypeSub(supermod.graphType): def __init__(self, node=None): supermod.graphType.__init__(self, node) + + supermod.graphType.subclass = graphTypeSub # end class graphTypeSub @@ -168,6 +198,8 @@ def __init__(self, node=None): class nodeTypeSub(supermod.nodeType): def __init__(self, id=None, label='', link=None, childnode=None): supermod.nodeType.__init__(self, id, label, link, childnode) + + supermod.nodeType.subclass = nodeTypeSub # end class nodeTypeSub @@ -175,6 +207,8 @@ def __init__(self, id=None, label='', link=None, childnode=None): class childnodeTypeSub(supermod.childnodeType): def __init__(self, relation=None, refid=None, edgelabel=None): supermod.childnodeType.__init__(self, relation, refid, edgelabel) + + supermod.childnodeType.subclass = childnodeTypeSub # end class childnodeTypeSub @@ -182,6 +216,8 @@ def __init__(self, relation=None, refid=None, edgelabel=None): class linkTypeSub(supermod.linkType): def __init__(self, refid=None, external=None, valueOf_=''): supermod.linkType.__init__(self, refid, external) + + supermod.linkType.subclass = linkTypeSub # end class linkTypeSub @@ -189,13 +225,18 @@ def __init__(self, refid=None, external=None, valueOf_=''): class listingTypeSub(supermod.listingType): def __init__(self, codeline=None): supermod.listingType.__init__(self, codeline) + + supermod.listingType.subclass = listingTypeSub # end class listingTypeSub class codelineTypeSub(supermod.codelineType): def __init__(self, external=None, lineno=None, refkind=None, refid=None, highlight=None): - supermod.codelineType.__init__(self, external, lineno, refkind, refid, highlight) + supermod.codelineType.__init__( + self, external, lineno, refkind, refid, highlight) + + supermod.codelineType.subclass = codelineTypeSub # end class codelineTypeSub @@ -203,6 +244,8 @@ def __init__(self, external=None, lineno=None, refkind=None, refid=None, highlig class highlightTypeSub(supermod.highlightType): def __init__(self, class_=None, sp=None, ref=None, mixedclass_=None, content_=None): supermod.highlightType.__init__(self, mixedclass_, content_) + + supermod.highlightType.subclass = highlightTypeSub # end class highlightTypeSub @@ -210,13 +253,18 @@ def __init__(self, class_=None, sp=None, ref=None, mixedclass_=None, content_=No class referenceTypeSub(supermod.referenceType): def __init__(self, endline=None, startline=None, refid=None, compoundref=None, valueOf_='', mixedclass_=None, content_=None): supermod.referenceType.__init__(self, mixedclass_, content_) + + supermod.referenceType.subclass = referenceTypeSub # end class referenceTypeSub class locationTypeSub(supermod.locationType): def __init__(self, bodystart=None, line=None, bodyend=None, bodyfile=None, file=None, valueOf_=''): - supermod.locationType.__init__(self, bodystart, line, bodyend, bodyfile, file) + supermod.locationType.__init__( + self, bodystart, line, bodyend, bodyfile, file) + + supermod.locationType.subclass = locationTypeSub # end class locationTypeSub @@ -224,6 +272,8 @@ def __init__(self, bodystart=None, line=None, bodyend=None, bodyfile=None, file= class docSect1TypeSub(supermod.docSect1Type): def __init__(self, id=None, title='', para=None, sect2=None, internal=None, mixedclass_=None, content_=None): supermod.docSect1Type.__init__(self, mixedclass_, content_) + + supermod.docSect1Type.subclass = docSect1TypeSub # end class docSect1TypeSub @@ -231,6 +281,8 @@ def __init__(self, id=None, title='', para=None, sect2=None, internal=None, mixe class docSect2TypeSub(supermod.docSect2Type): def __init__(self, id=None, title='', para=None, sect3=None, internal=None, mixedclass_=None, content_=None): supermod.docSect2Type.__init__(self, mixedclass_, content_) + + supermod.docSect2Type.subclass = docSect2TypeSub # end class docSect2TypeSub @@ -238,6 +290,8 @@ def __init__(self, id=None, title='', para=None, sect3=None, internal=None, mixe class docSect3TypeSub(supermod.docSect3Type): def __init__(self, id=None, title='', para=None, sect4=None, internal=None, mixedclass_=None, content_=None): supermod.docSect3Type.__init__(self, mixedclass_, content_) + + supermod.docSect3Type.subclass = docSect3TypeSub # end class docSect3TypeSub @@ -245,6 +299,8 @@ def __init__(self, id=None, title='', para=None, sect4=None, internal=None, mixe class docSect4TypeSub(supermod.docSect4Type): def __init__(self, id=None, title='', para=None, internal=None, mixedclass_=None, content_=None): supermod.docSect4Type.__init__(self, mixedclass_, content_) + + supermod.docSect4Type.subclass = docSect4TypeSub # end class docSect4TypeSub @@ -252,6 +308,8 @@ def __init__(self, id=None, title='', para=None, internal=None, mixedclass_=None class docInternalTypeSub(supermod.docInternalType): def __init__(self, para=None, sect1=None, mixedclass_=None, content_=None): supermod.docInternalType.__init__(self, mixedclass_, content_) + + supermod.docInternalType.subclass = docInternalTypeSub # end class docInternalTypeSub @@ -259,6 +317,8 @@ def __init__(self, para=None, sect1=None, mixedclass_=None, content_=None): class docInternalS1TypeSub(supermod.docInternalS1Type): def __init__(self, para=None, sect2=None, mixedclass_=None, content_=None): supermod.docInternalS1Type.__init__(self, mixedclass_, content_) + + supermod.docInternalS1Type.subclass = docInternalS1TypeSub # end class docInternalS1TypeSub @@ -266,6 +326,8 @@ def __init__(self, para=None, sect2=None, mixedclass_=None, content_=None): class docInternalS2TypeSub(supermod.docInternalS2Type): def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): supermod.docInternalS2Type.__init__(self, mixedclass_, content_) + + supermod.docInternalS2Type.subclass = docInternalS2TypeSub # end class docInternalS2TypeSub @@ -273,6 +335,8 @@ def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): class docInternalS3TypeSub(supermod.docInternalS3Type): def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): supermod.docInternalS3Type.__init__(self, mixedclass_, content_) + + supermod.docInternalS3Type.subclass = docInternalS3TypeSub # end class docInternalS3TypeSub @@ -280,6 +344,8 @@ def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): class docInternalS4TypeSub(supermod.docInternalS4Type): def __init__(self, para=None, mixedclass_=None, content_=None): supermod.docInternalS4Type.__init__(self, mixedclass_, content_) + + supermod.docInternalS4Type.subclass = docInternalS4TypeSub # end class docInternalS4TypeSub @@ -287,6 +353,8 @@ def __init__(self, para=None, mixedclass_=None, content_=None): class docURLLinkSub(supermod.docURLLink): def __init__(self, url=None, valueOf_='', mixedclass_=None, content_=None): supermod.docURLLink.__init__(self, mixedclass_, content_) + + supermod.docURLLink.subclass = docURLLinkSub # end class docURLLinkSub @@ -294,6 +362,8 @@ def __init__(self, url=None, valueOf_='', mixedclass_=None, content_=None): class docAnchorTypeSub(supermod.docAnchorType): def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): supermod.docAnchorType.__init__(self, mixedclass_, content_) + + supermod.docAnchorType.subclass = docAnchorTypeSub # end class docAnchorTypeSub @@ -301,6 +371,8 @@ def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): class docFormulaTypeSub(supermod.docFormulaType): def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): supermod.docFormulaType.__init__(self, mixedclass_, content_) + + supermod.docFormulaType.subclass = docFormulaTypeSub # end class docFormulaTypeSub @@ -308,6 +380,8 @@ def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): class docIndexEntryTypeSub(supermod.docIndexEntryType): def __init__(self, primaryie='', secondaryie=''): supermod.docIndexEntryType.__init__(self, primaryie, secondaryie) + + supermod.docIndexEntryType.subclass = docIndexEntryTypeSub # end class docIndexEntryTypeSub @@ -315,6 +389,8 @@ def __init__(self, primaryie='', secondaryie=''): class docListTypeSub(supermod.docListType): def __init__(self, listitem=None): supermod.docListType.__init__(self, listitem) + + supermod.docListType.subclass = docListTypeSub # end class docListTypeSub @@ -322,6 +398,8 @@ def __init__(self, listitem=None): class docListItemTypeSub(supermod.docListItemType): def __init__(self, para=None): supermod.docListItemType.__init__(self, para) + + supermod.docListItemType.subclass = docListItemTypeSub # end class docListItemTypeSub @@ -329,6 +407,8 @@ def __init__(self, para=None): class docSimpleSectTypeSub(supermod.docSimpleSectType): def __init__(self, kind=None, title=None, para=None): supermod.docSimpleSectType.__init__(self, kind, title, para) + + supermod.docSimpleSectType.subclass = docSimpleSectTypeSub # end class docSimpleSectTypeSub @@ -336,6 +416,8 @@ def __init__(self, kind=None, title=None, para=None): class docVarListEntryTypeSub(supermod.docVarListEntryType): def __init__(self, term=None): supermod.docVarListEntryType.__init__(self, term) + + supermod.docVarListEntryType.subclass = docVarListEntryTypeSub # end class docVarListEntryTypeSub @@ -343,6 +425,8 @@ def __init__(self, term=None): class docRefTextTypeSub(supermod.docRefTextType): def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): supermod.docRefTextType.__init__(self, mixedclass_, content_) + + supermod.docRefTextType.subclass = docRefTextTypeSub # end class docRefTextTypeSub @@ -350,6 +434,8 @@ def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedcl class docTableTypeSub(supermod.docTableType): def __init__(self, rows=None, cols=None, row=None, caption=None): supermod.docTableType.__init__(self, rows, cols, row, caption) + + supermod.docTableType.subclass = docTableTypeSub # end class docTableTypeSub @@ -357,6 +443,8 @@ def __init__(self, rows=None, cols=None, row=None, caption=None): class docRowTypeSub(supermod.docRowType): def __init__(self, entry=None): supermod.docRowType.__init__(self, entry) + + supermod.docRowType.subclass = docRowTypeSub # end class docRowTypeSub @@ -364,6 +452,8 @@ def __init__(self, entry=None): class docEntryTypeSub(supermod.docEntryType): def __init__(self, thead=None, para=None): supermod.docEntryType.__init__(self, thead, para) + + supermod.docEntryType.subclass = docEntryTypeSub # end class docEntryTypeSub @@ -371,6 +461,8 @@ def __init__(self, thead=None, para=None): class docHeadingTypeSub(supermod.docHeadingType): def __init__(self, level=None, valueOf_='', mixedclass_=None, content_=None): supermod.docHeadingType.__init__(self, mixedclass_, content_) + + supermod.docHeadingType.subclass = docHeadingTypeSub # end class docHeadingTypeSub @@ -378,6 +470,8 @@ def __init__(self, level=None, valueOf_='', mixedclass_=None, content_=None): class docImageTypeSub(supermod.docImageType): def __init__(self, width=None, type_=None, name=None, height=None, valueOf_='', mixedclass_=None, content_=None): supermod.docImageType.__init__(self, mixedclass_, content_) + + supermod.docImageType.subclass = docImageTypeSub # end class docImageTypeSub @@ -385,6 +479,8 @@ def __init__(self, width=None, type_=None, name=None, height=None, valueOf_='', class docDotFileTypeSub(supermod.docDotFileType): def __init__(self, name=None, valueOf_='', mixedclass_=None, content_=None): supermod.docDotFileType.__init__(self, mixedclass_, content_) + + supermod.docDotFileType.subclass = docDotFileTypeSub # end class docDotFileTypeSub @@ -392,6 +488,8 @@ def __init__(self, name=None, valueOf_='', mixedclass_=None, content_=None): class docTocItemTypeSub(supermod.docTocItemType): def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): supermod.docTocItemType.__init__(self, mixedclass_, content_) + + supermod.docTocItemType.subclass = docTocItemTypeSub # end class docTocItemTypeSub @@ -399,6 +497,8 @@ def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): class docTocListTypeSub(supermod.docTocListType): def __init__(self, tocitem=None): supermod.docTocListType.__init__(self, tocitem) + + supermod.docTocListType.subclass = docTocListTypeSub # end class docTocListTypeSub @@ -406,6 +506,8 @@ def __init__(self, tocitem=None): class docLanguageTypeSub(supermod.docLanguageType): def __init__(self, langid=None, para=None): supermod.docLanguageType.__init__(self, langid, para) + + supermod.docLanguageType.subclass = docLanguageTypeSub # end class docLanguageTypeSub @@ -413,13 +515,18 @@ def __init__(self, langid=None, para=None): class docParamListTypeSub(supermod.docParamListType): def __init__(self, kind=None, parameteritem=None): supermod.docParamListType.__init__(self, kind, parameteritem) + + supermod.docParamListType.subclass = docParamListTypeSub # end class docParamListTypeSub class docParamListItemSub(supermod.docParamListItem): def __init__(self, parameternamelist=None, parameterdescription=None): - supermod.docParamListItem.__init__(self, parameternamelist, parameterdescription) + supermod.docParamListItem.__init__( + self, parameternamelist, parameterdescription) + + supermod.docParamListItem.subclass = docParamListItemSub # end class docParamListItemSub @@ -427,6 +534,8 @@ def __init__(self, parameternamelist=None, parameterdescription=None): class docParamNameListSub(supermod.docParamNameList): def __init__(self, parametername=None): supermod.docParamNameList.__init__(self, parametername) + + supermod.docParamNameList.subclass = docParamNameListSub # end class docParamNameListSub @@ -434,6 +543,8 @@ def __init__(self, parametername=None): class docParamNameSub(supermod.docParamName): def __init__(self, direction=None, ref=None, mixedclass_=None, content_=None): supermod.docParamName.__init__(self, mixedclass_, content_) + + supermod.docParamName.subclass = docParamNameSub # end class docParamNameSub @@ -441,6 +552,8 @@ def __init__(self, direction=None, ref=None, mixedclass_=None, content_=None): class docXRefSectTypeSub(supermod.docXRefSectType): def __init__(self, id=None, xreftitle=None, xrefdescription=None): supermod.docXRefSectType.__init__(self, id, xreftitle, xrefdescription) + + supermod.docXRefSectType.subclass = docXRefSectTypeSub # end class docXRefSectTypeSub @@ -448,6 +561,8 @@ def __init__(self, id=None, xreftitle=None, xrefdescription=None): class docCopyTypeSub(supermod.docCopyType): def __init__(self, link=None, para=None, sect1=None, internal=None): supermod.docCopyType.__init__(self, link, para, sect1, internal) + + supermod.docCopyType.subclass = docCopyTypeSub # end class docCopyTypeSub @@ -455,9 +570,12 @@ def __init__(self, link=None, para=None, sect1=None, internal=None): class docCharTypeSub(supermod.docCharType): def __init__(self, char=None, valueOf_=''): supermod.docCharType.__init__(self, char) + + supermod.docCharType.subclass = docCharTypeSub # end class docCharTypeSub + class docParaTypeSub(supermod.docParaType): def __init__(self, char=None, valueOf_=''): supermod.docParaType.__init__(self, char) @@ -471,7 +589,7 @@ def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ nodeName_ == "ref": @@ -494,12 +612,9 @@ def buildChildren(self, child_, nodeName_): # end class docParaTypeSub - def parse(inFilename): doc = minidom.parse(inFilename) rootNode = doc.documentElement rootObj = supermod.DoxygenType.factory() rootObj.build(rootNode) return rootObj - - diff --git a/docs/doxygen/doxyxml/generated/compoundsuper.py b/docs/doxygen/doxyxml/generated/compoundsuper.py index 6e984e1..40f548a 100644 --- a/docs/doxygen/doxyxml/generated/compoundsuper.py +++ b/docs/doxygen/doxyxml/generated/compoundsuper.py @@ -4,17 +4,12 @@ # Generated Thu Jun 11 18:44:25 2009 by generateDS.py. # -from __future__ import print_function -from __future__ import unicode_literals import sys from xml.dom import minidom from xml.dom import Node -import six - - # # User methods # @@ -29,12 +24,16 @@ class GeneratedsSuper(object): def format_string(self, input_data, input_name=''): return input_data + def format_integer(self, input_data, input_name=''): return '%d' % input_data + def format_float(self, input_data, input_name=''): return '%f' % input_data + def format_double(self, input_data, input_name=''): return '%e' % input_data + def format_boolean(self, input_data, input_name=''): return '%s' % input_data @@ -46,9 +45,9 @@ def format_boolean(self, input_data, input_name=''): ## from IPython.Shell import IPShellEmbed ## args = '' -## ipshell = IPShellEmbed(args, +# ipshell = IPShellEmbed(args, ## banner = 'Dropping into IPython', -## exit_msg = 'Leaving Interpreter, back to program.') +# exit_msg = 'Leaving Interpreter, back to program.') # Then use the following line where and when you want to drop into the # IPython shell: @@ -64,20 +63,23 @@ def format_boolean(self, input_data, input_name=''): # Support/utility functions. # + def showIndent(outfile, level): for idx in range(level): outfile.write(' ') + def quote_xml(inStr): - s1 = (isinstance(inStr, six.string_types) and inStr or + s1 = (isinstance(inStr, str) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') s1 = s1.replace('>', '>') return s1 + def quote_attrib(inStr): - s1 = (isinstance(inStr, six.string_types) and inStr or + s1 = (isinstance(inStr, str) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') @@ -91,6 +93,7 @@ def quote_attrib(inStr): s1 = '"%s"' % s1 return s1 + def quote_python(inStr): s1 = inStr if s1.find("'") == -1: @@ -122,26 +125,33 @@ class MixedContainer(object): TypeDecimal = 5 TypeDouble = 6 TypeBoolean = 7 + def __init__(self, category, content_type, name, value): self.category = category self.content_type = content_type self.name = name self.value = value + def getCategory(self): return self.category + def getContenttype(self, content_type): return self.content_type + def getValue(self): return self.value + def getName(self): return self.name + def export(self, outfile, level, name, namespace): if self.category == MixedContainer.CategoryText: outfile.write(self.value) elif self.category == MixedContainer.CategorySimple: self.exportSimple(outfile, level, name) else: # category == MixedContainer.CategoryComplex - self.value.export(outfile, level, namespace,name) + self.value.export(outfile, level, namespace, name) + def exportSimple(self, outfile, level, name): if self.content_type == MixedContainer.TypeString: outfile.write('<%s>%s' % (self.name, self.value, self.name)) @@ -153,19 +163,20 @@ def exportSimple(self, outfile, level, name): outfile.write('<%s>%f' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeDouble: outfile.write('<%s>%g' % (self.name, self.value, self.name)) + def exportLiteral(self, outfile, level, name): if self.category == MixedContainer.CategoryText: showIndent(outfile, level) - outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ - (self.category, self.content_type, self.name, self.value)) + outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % + (self.category, self.content_type, self.name, self.value)) elif self.category == MixedContainer.CategorySimple: showIndent(outfile, level) - outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ - (self.category, self.content_type, self.name, self.value)) + outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % + (self.category, self.content_type, self.name, self.value)) else: # category == MixedContainer.CategoryComplex showIndent(outfile, level) - outfile.write('MixedContainer(%d, %d, "%s",\n' % \ - (self.category, self.content_type, self.name,)) + outfile.write('MixedContainer(%d, %d, "%s",\n' % + (self.category, self.content_type, self.name,)) self.value.exportLiteral(outfile, level + 1) showIndent(outfile, level) outfile.write(')\n') @@ -176,6 +187,7 @@ def __init__(self, name='', data_type='', container=0): self.name = name self.data_type = data_type self.container = container + def set_name(self, name): self.name = name def get_name(self): return self.name def set_data_type(self, data_type): self.data_type = data_type @@ -191,9 +203,11 @@ def get_container(self): return self.container class DoxygenType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, version=None, compounddef=None): self.version = version self.compounddef = compounddef + def factory(*args_, **kwargs_): if DoxygenType.subclass: return DoxygenType.subclass(*args_, **kwargs_) @@ -204,6 +218,7 @@ def get_compounddef(self): return self.compounddef def set_compounddef(self, compounddef): self.compounddef = compounddef def get_version(self): return self.version def set_version(self, version): self.version = version + def export(self, outfile, level, namespace_='', name_='DoxygenType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -215,27 +230,34 @@ def export(self, outfile, level, namespace_='', name_='DoxygenType', namespacede outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='DoxygenType'): outfile.write(' version=%s' % (quote_attrib(self.version), )) + def exportChildren(self, outfile, level, namespace_='', name_='DoxygenType'): if self.compounddef: - self.compounddef.export(outfile, level, namespace_, name_='compounddef') + self.compounddef.export( + outfile, level, namespace_, name_='compounddef') + def hasContent_(self): if ( self.compounddef is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='DoxygenType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.version is not None: showIndent(outfile, level) outfile.write('version = "%s",\n' % (self.version,)) + def exportLiteralChildren(self, outfile, level, name_): if self.compounddef: showIndent(outfile, level) @@ -243,18 +265,21 @@ def exportLiteralChildren(self, outfile, level, name_): self.compounddef.exportLiteral(outfile, level, name_='compounddef') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('version'): self.version = attrs.get('version').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'compounddef': + nodeName_ == 'compounddef': obj_ = compounddefType.factory() obj_.build(child_) self.set_compounddef(obj_) @@ -264,6 +289,7 @@ def buildChildren(self, child_, nodeName_): class compounddefType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, kind=None, prot=None, id=None, compoundname=None, title=None, basecompoundref=None, derivedcompoundref=None, includes=None, includedby=None, incdepgraph=None, invincdepgraph=None, innerdir=None, innerfile=None, innerclass=None, innernamespace=None, innerpage=None, innergroup=None, templateparamlist=None, sectiondef=None, briefdescription=None, detaileddescription=None, inheritancegraph=None, collaborationgraph=None, programlisting=None, location=None, listofallmembers=None): self.kind = kind self.prot = prot @@ -324,6 +350,7 @@ def __init__(self, kind=None, prot=None, id=None, compoundname=None, title=None, self.programlisting = programlisting self.location = location self.listofallmembers = listofallmembers + def factory(*args_, **kwargs_): if compounddefType.subclass: return compounddefType.subclass(*args_, **kwargs_) @@ -335,13 +362,23 @@ def set_compoundname(self, compoundname): self.compoundname = compoundname def get_title(self): return self.title def set_title(self, title): self.title = title def get_basecompoundref(self): return self.basecompoundref - def set_basecompoundref(self, basecompoundref): self.basecompoundref = basecompoundref + def set_basecompoundref( + self, basecompoundref): self.basecompoundref = basecompoundref + def add_basecompoundref(self, value): self.basecompoundref.append(value) - def insert_basecompoundref(self, index, value): self.basecompoundref[index] = value + def insert_basecompoundref( + self, index, value): self.basecompoundref[index] = value + def get_derivedcompoundref(self): return self.derivedcompoundref - def set_derivedcompoundref(self, derivedcompoundref): self.derivedcompoundref = derivedcompoundref - def add_derivedcompoundref(self, value): self.derivedcompoundref.append(value) - def insert_derivedcompoundref(self, index, value): self.derivedcompoundref[index] = value + + def set_derivedcompoundref( + self, derivedcompoundref): self.derivedcompoundref = derivedcompoundref + + def add_derivedcompoundref( + self, value): self.derivedcompoundref.append(value) + def insert_derivedcompoundref( + self, index, value): self.derivedcompoundref[index] = value + def get_includes(self): return self.includes def set_includes(self, includes): self.includes = includes def add_includes(self, value): self.includes.append(value) @@ -353,7 +390,9 @@ def insert_includedby(self, index, value): self.includedby[index] = value def get_incdepgraph(self): return self.incdepgraph def set_incdepgraph(self, incdepgraph): self.incdepgraph = incdepgraph def get_invincdepgraph(self): return self.invincdepgraph - def set_invincdepgraph(self, invincdepgraph): self.invincdepgraph = invincdepgraph + def set_invincdepgraph( + self, invincdepgraph): self.invincdepgraph = invincdepgraph + def get_innerdir(self): return self.innerdir def set_innerdir(self, innerdir): self.innerdir = innerdir def add_innerdir(self, value): self.innerdir.append(value) @@ -367,9 +406,13 @@ def set_innerclass(self, innerclass): self.innerclass = innerclass def add_innerclass(self, value): self.innerclass.append(value) def insert_innerclass(self, index, value): self.innerclass[index] = value def get_innernamespace(self): return self.innernamespace - def set_innernamespace(self, innernamespace): self.innernamespace = innernamespace + def set_innernamespace( + self, innernamespace): self.innernamespace = innernamespace + def add_innernamespace(self, value): self.innernamespace.append(value) - def insert_innernamespace(self, index, value): self.innernamespace[index] = value + def insert_innernamespace( + self, index, value): self.innernamespace[index] = value + def get_innerpage(self): return self.innerpage def set_innerpage(self, innerpage): self.innerpage = innerpage def add_innerpage(self, value): self.innerpage.append(value) @@ -379,35 +422,51 @@ def set_innergroup(self, innergroup): self.innergroup = innergroup def add_innergroup(self, value): self.innergroup.append(value) def insert_innergroup(self, index, value): self.innergroup[index] = value def get_templateparamlist(self): return self.templateparamlist - def set_templateparamlist(self, templateparamlist): self.templateparamlist = templateparamlist + def set_templateparamlist( + self, templateparamlist): self.templateparamlist = templateparamlist + def get_sectiondef(self): return self.sectiondef def set_sectiondef(self, sectiondef): self.sectiondef = sectiondef def add_sectiondef(self, value): self.sectiondef.append(value) def insert_sectiondef(self, index, value): self.sectiondef[index] = value def get_briefdescription(self): return self.briefdescription - def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription + def set_briefdescription( + self, briefdescription): self.briefdescription = briefdescription + def get_detaileddescription(self): return self.detaileddescription - def set_detaileddescription(self, detaileddescription): self.detaileddescription = detaileddescription + def set_detaileddescription( + self, detaileddescription): self.detaileddescription = detaileddescription + def get_inheritancegraph(self): return self.inheritancegraph - def set_inheritancegraph(self, inheritancegraph): self.inheritancegraph = inheritancegraph + def set_inheritancegraph( + self, inheritancegraph): self.inheritancegraph = inheritancegraph + def get_collaborationgraph(self): return self.collaborationgraph - def set_collaborationgraph(self, collaborationgraph): self.collaborationgraph = collaborationgraph + def set_collaborationgraph( + self, collaborationgraph): self.collaborationgraph = collaborationgraph + def get_programlisting(self): return self.programlisting - def set_programlisting(self, programlisting): self.programlisting = programlisting + def set_programlisting( + self, programlisting): self.programlisting = programlisting + def get_location(self): return self.location def set_location(self, location): self.location = location def get_listofallmembers(self): return self.listofallmembers - def set_listofallmembers(self, listofallmembers): self.listofallmembers = listofallmembers + def set_listofallmembers( + self, listofallmembers): self.listofallmembers = listofallmembers + def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='compounddefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='compounddefType') + self.exportAttributes(outfile, level, namespace_, + name_='compounddefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -415,32 +474,41 @@ def export(self, outfile, level, namespace_='', name_='compounddefType', namespa outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='compounddefType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='compounddefType'): if self.compoundname is not None: showIndent(outfile, level) - outfile.write('<%scompoundname>%s\n' % (namespace_, self.format_string(quote_xml(self.compoundname).encode(ExternalEncoding), input_name='compoundname'), namespace_)) + outfile.write('<%scompoundname>%s\n' % (namespace_, self.format_string( + quote_xml(self.compoundname).encode(ExternalEncoding), input_name='compoundname'), namespace_)) if self.title is not None: showIndent(outfile, level) - outfile.write('<%stitle>%s\n' % (namespace_, self.format_string(quote_xml(self.title).encode(ExternalEncoding), input_name='title'), namespace_)) + outfile.write('<%stitle>%s\n' % (namespace_, self.format_string( + quote_xml(self.title).encode(ExternalEncoding), input_name='title'), namespace_)) for basecompoundref_ in self.basecompoundref: - basecompoundref_.export(outfile, level, namespace_, name_='basecompoundref') + basecompoundref_.export( + outfile, level, namespace_, name_='basecompoundref') for derivedcompoundref_ in self.derivedcompoundref: - derivedcompoundref_.export(outfile, level, namespace_, name_='derivedcompoundref') + derivedcompoundref_.export( + outfile, level, namespace_, name_='derivedcompoundref') for includes_ in self.includes: includes_.export(outfile, level, namespace_, name_='includes') for includedby_ in self.includedby: includedby_.export(outfile, level, namespace_, name_='includedby') if self.incdepgraph: - self.incdepgraph.export(outfile, level, namespace_, name_='incdepgraph') + self.incdepgraph.export( + outfile, level, namespace_, name_='incdepgraph') if self.invincdepgraph: - self.invincdepgraph.export(outfile, level, namespace_, name_='invincdepgraph') + self.invincdepgraph.export( + outfile, level, namespace_, name_='invincdepgraph') for innerdir_ in self.innerdir: innerdir_.export(outfile, level, namespace_, name_='innerdir') for innerfile_ in self.innerfile: @@ -448,29 +516,38 @@ def exportChildren(self, outfile, level, namespace_='', name_='compounddefType') for innerclass_ in self.innerclass: innerclass_.export(outfile, level, namespace_, name_='innerclass') for innernamespace_ in self.innernamespace: - innernamespace_.export(outfile, level, namespace_, name_='innernamespace') + innernamespace_.export( + outfile, level, namespace_, name_='innernamespace') for innerpage_ in self.innerpage: innerpage_.export(outfile, level, namespace_, name_='innerpage') for innergroup_ in self.innergroup: innergroup_.export(outfile, level, namespace_, name_='innergroup') if self.templateparamlist: - self.templateparamlist.export(outfile, level, namespace_, name_='templateparamlist') + self.templateparamlist.export( + outfile, level, namespace_, name_='templateparamlist') for sectiondef_ in self.sectiondef: sectiondef_.export(outfile, level, namespace_, name_='sectiondef') if self.briefdescription: - self.briefdescription.export(outfile, level, namespace_, name_='briefdescription') + self.briefdescription.export( + outfile, level, namespace_, name_='briefdescription') if self.detaileddescription: - self.detaileddescription.export(outfile, level, namespace_, name_='detaileddescription') + self.detaileddescription.export( + outfile, level, namespace_, name_='detaileddescription') if self.inheritancegraph: - self.inheritancegraph.export(outfile, level, namespace_, name_='inheritancegraph') + self.inheritancegraph.export( + outfile, level, namespace_, name_='inheritancegraph') if self.collaborationgraph: - self.collaborationgraph.export(outfile, level, namespace_, name_='collaborationgraph') + self.collaborationgraph.export( + outfile, level, namespace_, name_='collaborationgraph') if self.programlisting: - self.programlisting.export(outfile, level, namespace_, name_='programlisting') + self.programlisting.export( + outfile, level, namespace_, name_='programlisting') if self.location: self.location.export(outfile, level, namespace_, name_='location') if self.listofallmembers: - self.listofallmembers.export(outfile, level, namespace_, name_='listofallmembers') + self.listofallmembers.export( + outfile, level, namespace_, name_='listofallmembers') + def hasContent_(self): if ( self.compoundname is not None or @@ -496,15 +573,17 @@ def hasContent_(self): self.programlisting is not None or self.location is not None or self.listofallmembers is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='compounddefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) @@ -515,9 +594,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) - outfile.write('compoundname=%s,\n' % quote_python(self.compoundname).encode(ExternalEncoding)) + outfile.write('compoundname=%s,\n' % quote_python( + self.compoundname).encode(ExternalEncoding)) if self.title: showIndent(outfile, level) outfile.write('title=model_.xsd_string(\n') @@ -530,7 +611,8 @@ def exportLiteralChildren(self, outfile, level, name_): for basecompoundref in self.basecompoundref: showIndent(outfile, level) outfile.write('model_.basecompoundref(\n') - basecompoundref.exportLiteral(outfile, level, name_='basecompoundref') + basecompoundref.exportLiteral( + outfile, level, name_='basecompoundref') showIndent(outfile, level) outfile.write('),\n') level -= 1 @@ -542,7 +624,8 @@ def exportLiteralChildren(self, outfile, level, name_): for derivedcompoundref in self.derivedcompoundref: showIndent(outfile, level) outfile.write('model_.derivedcompoundref(\n') - derivedcompoundref.exportLiteral(outfile, level, name_='derivedcompoundref') + derivedcompoundref.exportLiteral( + outfile, level, name_='derivedcompoundref') showIndent(outfile, level) outfile.write('),\n') level -= 1 @@ -581,7 +664,8 @@ def exportLiteralChildren(self, outfile, level, name_): if self.invincdepgraph: showIndent(outfile, level) outfile.write('invincdepgraph=model_.graphType(\n') - self.invincdepgraph.exportLiteral(outfile, level, name_='invincdepgraph') + self.invincdepgraph.exportLiteral( + outfile, level, name_='invincdepgraph') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) @@ -626,7 +710,8 @@ def exportLiteralChildren(self, outfile, level, name_): for innernamespace in self.innernamespace: showIndent(outfile, level) outfile.write('model_.innernamespace(\n') - innernamespace.exportLiteral(outfile, level, name_='innernamespace') + innernamespace.exportLiteral( + outfile, level, name_='innernamespace') showIndent(outfile, level) outfile.write('),\n') level -= 1 @@ -659,7 +744,8 @@ def exportLiteralChildren(self, outfile, level, name_): if self.templateparamlist: showIndent(outfile, level) outfile.write('templateparamlist=model_.templateparamlistType(\n') - self.templateparamlist.exportLiteral(outfile, level, name_='templateparamlist') + self.templateparamlist.exportLiteral( + outfile, level, name_='templateparamlist') showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) @@ -677,31 +763,36 @@ def exportLiteralChildren(self, outfile, level, name_): if self.briefdescription: showIndent(outfile, level) outfile.write('briefdescription=model_.descriptionType(\n') - self.briefdescription.exportLiteral(outfile, level, name_='briefdescription') + self.briefdescription.exportLiteral( + outfile, level, name_='briefdescription') showIndent(outfile, level) outfile.write('),\n') if self.detaileddescription: showIndent(outfile, level) outfile.write('detaileddescription=model_.descriptionType(\n') - self.detaileddescription.exportLiteral(outfile, level, name_='detaileddescription') + self.detaileddescription.exportLiteral( + outfile, level, name_='detaileddescription') showIndent(outfile, level) outfile.write('),\n') if self.inheritancegraph: showIndent(outfile, level) outfile.write('inheritancegraph=model_.graphType(\n') - self.inheritancegraph.exportLiteral(outfile, level, name_='inheritancegraph') + self.inheritancegraph.exportLiteral( + outfile, level, name_='inheritancegraph') showIndent(outfile, level) outfile.write('),\n') if self.collaborationgraph: showIndent(outfile, level) outfile.write('collaborationgraph=model_.graphType(\n') - self.collaborationgraph.exportLiteral(outfile, level, name_='collaborationgraph') + self.collaborationgraph.exportLiteral( + outfile, level, name_='collaborationgraph') showIndent(outfile, level) outfile.write('),\n') if self.programlisting: showIndent(outfile, level) outfile.write('programlisting=model_.listingType(\n') - self.programlisting.exportLiteral(outfile, level, name_='programlisting') + self.programlisting.exportLiteral( + outfile, level, name_='programlisting') showIndent(outfile, level) outfile.write('),\n') if self.location: @@ -713,15 +804,18 @@ def exportLiteralChildren(self, outfile, level, name_): if self.listofallmembers: showIndent(outfile, level) outfile.write('listofallmembers=model_.listofallmembersType(\n') - self.listofallmembers.exportLiteral(outfile, level, name_='listofallmembers') + self.listofallmembers.exportLiteral( + outfile, level, name_='listofallmembers') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value @@ -729,120 +823,121 @@ def buildAttributes(self, attrs): self.prot = attrs.get('prot').value if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'compoundname': + nodeName_ == 'compoundname': compoundname_ = '' for text__content_ in child_.childNodes: compoundname_ += text__content_.nodeValue self.compoundname = compoundname_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'title': + nodeName_ == 'title': obj_ = docTitleType.factory() obj_.build(child_) self.set_title(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'basecompoundref': + nodeName_ == 'basecompoundref': obj_ = compoundRefType.factory() obj_.build(child_) self.basecompoundref.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'derivedcompoundref': + nodeName_ == 'derivedcompoundref': obj_ = compoundRefType.factory() obj_.build(child_) self.derivedcompoundref.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'includes': + nodeName_ == 'includes': obj_ = incType.factory() obj_.build(child_) self.includes.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'includedby': + nodeName_ == 'includedby': obj_ = incType.factory() obj_.build(child_) self.includedby.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'incdepgraph': + nodeName_ == 'incdepgraph': obj_ = graphType.factory() obj_.build(child_) self.set_incdepgraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'invincdepgraph': + nodeName_ == 'invincdepgraph': obj_ = graphType.factory() obj_.build(child_) self.set_invincdepgraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'innerdir': + nodeName_ == 'innerdir': obj_ = refType.factory() obj_.build(child_) self.innerdir.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'innerfile': + nodeName_ == 'innerfile': obj_ = refType.factory() obj_.build(child_) self.innerfile.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'innerclass': + nodeName_ == 'innerclass': obj_ = refType.factory() obj_.build(child_) self.innerclass.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'innernamespace': + nodeName_ == 'innernamespace': obj_ = refType.factory() obj_.build(child_) self.innernamespace.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'innerpage': + nodeName_ == 'innerpage': obj_ = refType.factory() obj_.build(child_) self.innerpage.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'innergroup': + nodeName_ == 'innergroup': obj_ = refType.factory() obj_.build(child_) self.innergroup.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'templateparamlist': + nodeName_ == 'templateparamlist': obj_ = templateparamlistType.factory() obj_.build(child_) self.set_templateparamlist(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sectiondef': + nodeName_ == 'sectiondef': obj_ = sectiondefType.factory() obj_.build(child_) self.sectiondef.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'briefdescription': + nodeName_ == 'briefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_briefdescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'detaileddescription': + nodeName_ == 'detaileddescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_detaileddescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'inheritancegraph': + nodeName_ == 'inheritancegraph': obj_ = graphType.factory() obj_.build(child_) self.set_inheritancegraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'collaborationgraph': + nodeName_ == 'collaborationgraph': obj_ = graphType.factory() obj_.build(child_) self.set_collaborationgraph(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'programlisting': + nodeName_ == 'programlisting': obj_ = listingType.factory() obj_.build(child_) self.set_programlisting(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'location': + nodeName_ == 'location': obj_ = locationType.factory() obj_.build(child_) self.set_location(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'listofallmembers': + nodeName_ == 'listofallmembers': obj_ = listofallmembersType.factory() obj_.build(child_) self.set_listofallmembers(obj_) @@ -852,11 +947,13 @@ def buildChildren(self, child_, nodeName_): class listofallmembersType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, member=None): if member is None: self.member = [] else: self.member = member + def factory(*args_, **kwargs_): if listofallmembersType.subclass: return listofallmembersType.subclass(*args_, **kwargs_) @@ -867,10 +964,12 @@ def get_member(self): return self.member def set_member(self, member): self.member = member def add_member(self, value): self.member.append(value) def insert_member(self, index, value): self.member[index] = value + def export(self, outfile, level, namespace_='', name_='listofallmembersType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='listofallmembersType') + self.exportAttributes(outfile, level, namespace_, + name_='listofallmembersType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -878,25 +977,31 @@ def export(self, outfile, level, namespace_='', name_='listofallmembersType', na outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='listofallmembersType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='listofallmembersType'): for member_ in self.member: member_.export(outfile, level, namespace_, name_='member') + def hasContent_(self): if ( self.member is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='listofallmembersType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('member=[\n') @@ -910,17 +1015,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'member': + nodeName_ == 'member': obj_ = memberRefType.factory() obj_.build(child_) self.member.append(obj_) @@ -930,6 +1038,7 @@ def buildChildren(self, child_, nodeName_): class memberRefType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, virt=None, prot=None, refid=None, ambiguityscope=None, scope=None, name=None): self.virt = virt self.prot = prot @@ -937,6 +1046,7 @@ def __init__(self, virt=None, prot=None, refid=None, ambiguityscope=None, scope= self.ambiguityscope = ambiguityscope self.scope = scope self.name = name + def factory(*args_, **kwargs_): if memberRefType.subclass: return memberRefType.subclass(*args_, **kwargs_) @@ -954,11 +1064,15 @@ def set_prot(self, prot): self.prot = prot def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def get_ambiguityscope(self): return self.ambiguityscope - def set_ambiguityscope(self, ambiguityscope): self.ambiguityscope = ambiguityscope + + def set_ambiguityscope( + self, ambiguityscope): self.ambiguityscope = ambiguityscope + def export(self, outfile, level, namespace_='', name_='memberRefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='memberRefType') + self.exportAttributes(outfile, level, namespace_, + name_='memberRefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -966,35 +1080,44 @@ def export(self, outfile, level, namespace_='', name_='memberRefType', namespace outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='memberRefType'): if self.virt is not None: outfile.write(' virt=%s' % (quote_attrib(self.virt), )) if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.ambiguityscope is not None: - outfile.write(' ambiguityscope=%s' % (self.format_string(quote_attrib(self.ambiguityscope).encode(ExternalEncoding), input_name='ambiguityscope'), )) + outfile.write(' ambiguityscope=%s' % (self.format_string(quote_attrib( + self.ambiguityscope).encode(ExternalEncoding), input_name='ambiguityscope'), )) + def exportChildren(self, outfile, level, namespace_='', name_='memberRefType'): if self.scope is not None: showIndent(outfile, level) - outfile.write('<%sscope>%s\n' % (namespace_, self.format_string(quote_xml(self.scope).encode(ExternalEncoding), input_name='scope'), namespace_)) + outfile.write('<%sscope>%s\n' % (namespace_, self.format_string( + quote_xml(self.scope).encode(ExternalEncoding), input_name='scope'), namespace_)) if self.name is not None: showIndent(outfile, level) - outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) + outfile.write('<%sname>%s\n' % (namespace_, self.format_string( + quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) + def hasContent_(self): if ( self.scope is not None or self.name is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='memberRefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.virt is not None: showIndent(outfile, level) @@ -1008,17 +1131,22 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.ambiguityscope is not None: showIndent(outfile, level) outfile.write('ambiguityscope = %s,\n' % (self.ambiguityscope,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) - outfile.write('scope=%s,\n' % quote_python(self.scope).encode(ExternalEncoding)) + outfile.write('scope=%s,\n' % quote_python( + self.scope).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) + outfile.write('name=%s,\n' % quote_python( + self.name).encode(ExternalEncoding)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('virt'): self.virt = attrs.get('virt').value @@ -1028,15 +1156,16 @@ def buildAttributes(self, attrs): self.refid = attrs.get('refid').value if attrs.get('ambiguityscope'): self.ambiguityscope = attrs.get('ambiguityscope').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'scope': + nodeName_ == 'scope': scope_ = '' for text__content_ in child_.childNodes: scope_ += text__content_.nodeValue self.scope = scope_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'name': + nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue @@ -1047,8 +1176,10 @@ def buildChildren(self, child_, nodeName_): class scope(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if scope.subclass: return scope.subclass(*args_, **kwargs_) @@ -1057,6 +1188,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='scope', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -1068,33 +1200,40 @@ def export(self, outfile, level, namespace_='', name_='scope', namespacedef_='') outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='scope'): pass + def exportChildren(self, outfile, level, namespace_='', name_='scope'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='scope'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -1102,21 +1241,25 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class scope class name(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if name.subclass: return name.subclass(*args_, **kwargs_) @@ -1125,6 +1268,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='name', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -1136,33 +1280,40 @@ def export(self, outfile, level, namespace_='', name_='name', namespacedef_=''): outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='name'): pass + def exportChildren(self, outfile, level, namespace_='', name_='name'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='name'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -1170,19 +1321,22 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class name class compoundRefType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, virt=None, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): self.virt = virt self.prot = prot @@ -1195,6 +1349,7 @@ def __init__(self, virt=None, prot=None, refid=None, valueOf_='', mixedclass_=No self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if compoundRefType.subclass: return compoundRefType.subclass(*args_, **kwargs_) @@ -1209,40 +1364,48 @@ def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='compoundRefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='compoundRefType') + self.exportAttributes(outfile, level, namespace_, + name_='compoundRefType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='compoundRefType'): if self.virt is not None: outfile.write(' virt=%s' % (quote_attrib(self.virt), )) if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='compoundRefType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='compoundRefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.virt is not None: showIndent(outfile, level) @@ -1253,9 +1416,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -1263,6 +1428,7 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('virt'): self.virt = attrs.get('virt').value @@ -1270,21 +1436,23 @@ def buildAttributes(self, attrs): self.prot = attrs.get('prot').value if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class compoundRefType class reimplementType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, refid=None, valueOf_='', mixedclass_=None, content_=None): self.refid = refid if mixedclass_ is None: @@ -1295,6 +1463,7 @@ def __init__(self, refid=None, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if reimplementType.subclass: return reimplementType.subclass(*args_, **kwargs_) @@ -1305,43 +1474,53 @@ def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='reimplementType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='reimplementType') + self.exportAttributes(outfile, level, namespace_, + name_='reimplementType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='reimplementType'): if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='reimplementType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='reimplementType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -1349,24 +1528,27 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class reimplementType class incType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, local=None, refid=None, valueOf_='', mixedclass_=None, content_=None): self.local = local self.refid = refid @@ -1378,6 +1560,7 @@ def __init__(self, local=None, refid=None, valueOf_='', mixedclass_=None, conten self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if incType.subclass: return incType.subclass(*args_, **kwargs_) @@ -1390,6 +1573,7 @@ def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='incType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -1397,31 +1581,37 @@ def export(self, outfile, level, namespace_='', name_='incType', namespacedef_=' outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='incType'): if self.local is not None: outfile.write(' local=%s' % (quote_attrib(self.local), )) if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='incType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='incType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.local is not None: showIndent(outfile, level) @@ -1429,9 +1619,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -1439,26 +1631,29 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('local'): self.local = attrs.get('local').value if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class incType class refType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, prot=None, refid=None, valueOf_='', mixedclass_=None, content_=None): self.prot = prot self.refid = refid @@ -1470,6 +1665,7 @@ def __init__(self, prot=None, refid=None, valueOf_='', mixedclass_=None, content self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if refType.subclass: return refType.subclass(*args_, **kwargs_) @@ -1482,6 +1678,7 @@ def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='refType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -1489,31 +1686,37 @@ def export(self, outfile, level, namespace_='', name_='refType', namespacedef_=' outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='refType'): if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='refType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='refType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.prot is not None: showIndent(outfile, level) @@ -1521,9 +1724,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -1531,26 +1736,29 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class refType class refTextType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): self.refid = refid self.kindref = kindref @@ -1563,6 +1771,7 @@ def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedcl self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if refTextType.subclass: return refTextType.subclass(*args_, **kwargs_) @@ -1577,6 +1786,7 @@ def get_external(self): return self.external def set_external(self, external): self.external = external def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='refTextType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -1584,33 +1794,40 @@ def export(self, outfile, level, namespace_='', name_='refTextType', namespacede outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='refTextType'): if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.kindref is not None: outfile.write(' kindref=%s' % (quote_attrib(self.kindref), )) if self.external is not None: - outfile.write(' external=%s' % (self.format_string(quote_attrib(self.external).encode(ExternalEncoding), input_name='external'), )) + outfile.write(' external=%s' % (self.format_string(quote_attrib( + self.external).encode(ExternalEncoding), input_name='external'), )) + def exportChildren(self, outfile, level, namespace_='', name_='refTextType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='refTextType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) @@ -1621,9 +1838,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.external is not None: showIndent(outfile, level) outfile.write('external = %s,\n' % (self.external,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -1631,6 +1850,7 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value @@ -1638,21 +1858,23 @@ def buildAttributes(self, attrs): self.kindref = attrs.get('kindref').value if attrs.get('external'): self.external = attrs.get('external').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class refTextType class sectiondefType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, kind=None, header=None, description=None, memberdef=None): self.kind = kind self.header = header @@ -1661,6 +1883,7 @@ def __init__(self, kind=None, header=None, description=None, memberdef=None): self.memberdef = [] else: self.memberdef = memberdef + def factory(*args_, **kwargs_): if sectiondefType.subclass: return sectiondefType.subclass(*args_, **kwargs_) @@ -1677,10 +1900,12 @@ def add_memberdef(self, value): self.memberdef.append(value) def insert_memberdef(self, index, value): self.memberdef[index] = value def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind + def export(self, outfile, level, namespace_='', name_='sectiondefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='sectiondefType') + self.exportAttributes(outfile, level, namespace_, + name_='sectiondefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -1688,38 +1913,47 @@ def export(self, outfile, level, namespace_='', name_='sectiondefType', namespac outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='sectiondefType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) + def exportChildren(self, outfile, level, namespace_='', name_='sectiondefType'): if self.header is not None: showIndent(outfile, level) - outfile.write('<%sheader>%s\n' % (namespace_, self.format_string(quote_xml(self.header).encode(ExternalEncoding), input_name='header'), namespace_)) + outfile.write('<%sheader>%s\n' % (namespace_, self.format_string( + quote_xml(self.header).encode(ExternalEncoding), input_name='header'), namespace_)) if self.description: - self.description.export(outfile, level, namespace_, name_='description') + self.description.export( + outfile, level, namespace_, name_='description') for memberdef_ in self.memberdef: memberdef_.export(outfile, level, namespace_, name_='memberdef') + def hasContent_(self): if ( self.header is not None or self.description is not None or self.memberdef is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='sectiondefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) - outfile.write('header=%s,\n' % quote_python(self.header).encode(ExternalEncoding)) + outfile.write('header=%s,\n' % quote_python( + self.header).encode(ExternalEncoding)) if self.description: showIndent(outfile, level) outfile.write('description=model_.descriptionType(\n') @@ -1738,29 +1972,32 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'header': + nodeName_ == 'header': header_ = '' for text__content_ in child_.childNodes: header_ += text__content_.nodeValue self.header = header_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'description': + nodeName_ == 'description': obj_ = descriptionType.factory() obj_.build(child_) self.set_description(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'memberdef': + nodeName_ == 'memberdef': obj_ = memberdefType.factory() obj_.build(child_) self.memberdef.append(obj_) @@ -1770,6 +2007,7 @@ def buildChildren(self, child_, nodeName_): class memberdefType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, initonly=None, kind=None, volatile=None, const=None, raisexx=None, virt=None, readable=None, prot=None, explicit=None, new=None, final=None, writable=None, add=None, static=None, remove=None, sealed=None, mutable=None, gettable=None, inline=None, settable=None, id=None, templateparamlist=None, type_=None, definition=None, argsstring=None, name=None, read=None, write=None, bitfield=None, reimplements=None, reimplementedby=None, param=None, enumvalue=None, initializer=None, exceptions=None, briefdescription=None, detaileddescription=None, inbodydescription=None, location=None, references=None, referencedby=None): self.initonly = initonly self.kind = kind @@ -1830,6 +2068,7 @@ def __init__(self, initonly=None, kind=None, volatile=None, const=None, raisexx= self.referencedby = [] else: self.referencedby = referencedby + def factory(*args_, **kwargs_): if memberdefType.subclass: return memberdefType.subclass(*args_, **kwargs_) @@ -1837,7 +2076,9 @@ def factory(*args_, **kwargs_): return memberdefType(*args_, **kwargs_) factory = staticmethod(factory) def get_templateparamlist(self): return self.templateparamlist - def set_templateparamlist(self, templateparamlist): self.templateparamlist = templateparamlist + def set_templateparamlist( + self, templateparamlist): self.templateparamlist = templateparamlist + def get_type(self): return self.type_ def set_type(self, type_): self.type_ = type_ def get_definition(self): return self.definition @@ -1855,11 +2096,17 @@ def set_bitfield(self, bitfield): self.bitfield = bitfield def get_reimplements(self): return self.reimplements def set_reimplements(self, reimplements): self.reimplements = reimplements def add_reimplements(self, value): self.reimplements.append(value) - def insert_reimplements(self, index, value): self.reimplements[index] = value + def insert_reimplements( + self, index, value): self.reimplements[index] = value + def get_reimplementedby(self): return self.reimplementedby - def set_reimplementedby(self, reimplementedby): self.reimplementedby = reimplementedby + def set_reimplementedby( + self, reimplementedby): self.reimplementedby = reimplementedby + def add_reimplementedby(self, value): self.reimplementedby.append(value) - def insert_reimplementedby(self, index, value): self.reimplementedby[index] = value + def insert_reimplementedby( + self, index, value): self.reimplementedby[index] = value + def get_param(self): return self.param def set_param(self, param): self.param = param def add_param(self, value): self.param.append(value) @@ -1873,11 +2120,17 @@ def set_initializer(self, initializer): self.initializer = initializer def get_exceptions(self): return self.exceptions def set_exceptions(self, exceptions): self.exceptions = exceptions def get_briefdescription(self): return self.briefdescription - def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription + def set_briefdescription( + self, briefdescription): self.briefdescription = briefdescription + def get_detaileddescription(self): return self.detaileddescription - def set_detaileddescription(self, detaileddescription): self.detaileddescription = detaileddescription + def set_detaileddescription( + self, detaileddescription): self.detaileddescription = detaileddescription + def get_inbodydescription(self): return self.inbodydescription - def set_inbodydescription(self, inbodydescription): self.inbodydescription = inbodydescription + def set_inbodydescription( + self, inbodydescription): self.inbodydescription = inbodydescription + def get_location(self): return self.location def set_location(self, location): self.location = location def get_references(self): return self.references @@ -1887,7 +2140,9 @@ def insert_references(self, index, value): self.references[index] = value def get_referencedby(self): return self.referencedby def set_referencedby(self, referencedby): self.referencedby = referencedby def add_referencedby(self, value): self.referencedby.append(value) - def insert_referencedby(self, index, value): self.referencedby[index] = value + def insert_referencedby( + self, index, value): self.referencedby[index] = value + def get_initonly(self): return self.initonly def set_initonly(self, initonly): self.initonly = initonly def get_kind(self): return self.kind @@ -1930,10 +2185,12 @@ def get_settable(self): return self.settable def set_settable(self, settable): self.settable = settable def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='memberdefType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='memberdefType') + self.exportAttributes(outfile, level, namespace_, + name_='memberdefType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -1941,6 +2198,7 @@ def export(self, outfile, level, namespace_='', name_='memberdefType', namespace outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='memberdefType'): if self.initonly is not None: outfile.write(' initonly=%s' % (quote_attrib(self.initonly), )) @@ -1983,54 +2241,73 @@ def exportAttributes(self, outfile, level, namespace_='', name_='memberdefType') if self.settable is not None: outfile.write(' settable=%s' % (quote_attrib(self.settable), )) if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='memberdefType'): if self.templateparamlist: - self.templateparamlist.export(outfile, level, namespace_, name_='templateparamlist') + self.templateparamlist.export( + outfile, level, namespace_, name_='templateparamlist') if self.type_: self.type_.export(outfile, level, namespace_, name_='type') if self.definition is not None: showIndent(outfile, level) - outfile.write('<%sdefinition>%s\n' % (namespace_, self.format_string(quote_xml(self.definition).encode(ExternalEncoding), input_name='definition'), namespace_)) + outfile.write('<%sdefinition>%s\n' % (namespace_, self.format_string( + quote_xml(self.definition).encode(ExternalEncoding), input_name='definition'), namespace_)) if self.argsstring is not None: showIndent(outfile, level) - outfile.write('<%sargsstring>%s\n' % (namespace_, self.format_string(quote_xml(self.argsstring).encode(ExternalEncoding), input_name='argsstring'), namespace_)) + outfile.write('<%sargsstring>%s\n' % (namespace_, self.format_string( + quote_xml(self.argsstring).encode(ExternalEncoding), input_name='argsstring'), namespace_)) if self.name is not None: showIndent(outfile, level) - outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) + outfile.write('<%sname>%s\n' % (namespace_, self.format_string( + quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) if self.read is not None: showIndent(outfile, level) - outfile.write('<%sread>%s\n' % (namespace_, self.format_string(quote_xml(self.read).encode(ExternalEncoding), input_name='read'), namespace_)) + outfile.write('<%sread>%s\n' % (namespace_, self.format_string( + quote_xml(self.read).encode(ExternalEncoding), input_name='read'), namespace_)) if self.write is not None: showIndent(outfile, level) - outfile.write('<%swrite>%s\n' % (namespace_, self.format_string(quote_xml(self.write).encode(ExternalEncoding), input_name='write'), namespace_)) + outfile.write('<%swrite>%s\n' % (namespace_, self.format_string( + quote_xml(self.write).encode(ExternalEncoding), input_name='write'), namespace_)) if self.bitfield is not None: showIndent(outfile, level) - outfile.write('<%sbitfield>%s\n' % (namespace_, self.format_string(quote_xml(self.bitfield).encode(ExternalEncoding), input_name='bitfield'), namespace_)) + outfile.write('<%sbitfield>%s\n' % (namespace_, self.format_string( + quote_xml(self.bitfield).encode(ExternalEncoding), input_name='bitfield'), namespace_)) for reimplements_ in self.reimplements: - reimplements_.export(outfile, level, namespace_, name_='reimplements') + reimplements_.export( + outfile, level, namespace_, name_='reimplements') for reimplementedby_ in self.reimplementedby: - reimplementedby_.export(outfile, level, namespace_, name_='reimplementedby') + reimplementedby_.export( + outfile, level, namespace_, name_='reimplementedby') for param_ in self.param: param_.export(outfile, level, namespace_, name_='param') for enumvalue_ in self.enumvalue: enumvalue_.export(outfile, level, namespace_, name_='enumvalue') if self.initializer: - self.initializer.export(outfile, level, namespace_, name_='initializer') + self.initializer.export( + outfile, level, namespace_, name_='initializer') if self.exceptions: - self.exceptions.export(outfile, level, namespace_, name_='exceptions') + self.exceptions.export( + outfile, level, namespace_, name_='exceptions') if self.briefdescription: - self.briefdescription.export(outfile, level, namespace_, name_='briefdescription') + self.briefdescription.export( + outfile, level, namespace_, name_='briefdescription') if self.detaileddescription: - self.detaileddescription.export(outfile, level, namespace_, name_='detaileddescription') + self.detaileddescription.export( + outfile, level, namespace_, name_='detaileddescription') if self.inbodydescription: - self.inbodydescription.export(outfile, level, namespace_, name_='inbodydescription') + self.inbodydescription.export( + outfile, level, namespace_, name_='inbodydescription') if self.location: - self.location.export(outfile, level, namespace_, name_='location', ) + self.location.export( + outfile, level, namespace_, name_='location', ) for references_ in self.references: references_.export(outfile, level, namespace_, name_='references') for referencedby_ in self.referencedby: - referencedby_.export(outfile, level, namespace_, name_='referencedby') + referencedby_.export( + outfile, level, namespace_, name_='referencedby') + def hasContent_(self): if ( self.templateparamlist is not None or @@ -2053,15 +2330,17 @@ def hasContent_(self): self.location is not None or self.references is not None or self.referencedby is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='memberdefType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.initonly is not None: showIndent(outfile, level) @@ -2126,11 +2405,13 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): if self.templateparamlist: showIndent(outfile, level) outfile.write('templateparamlist=model_.templateparamlistType(\n') - self.templateparamlist.exportLiteral(outfile, level, name_='templateparamlist') + self.templateparamlist.exportLiteral( + outfile, level, name_='templateparamlist') showIndent(outfile, level) outfile.write('),\n') if self.type_: @@ -2140,17 +2421,23 @@ def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) - outfile.write('definition=%s,\n' % quote_python(self.definition).encode(ExternalEncoding)) + outfile.write('definition=%s,\n' % quote_python( + self.definition).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('argsstring=%s,\n' % quote_python(self.argsstring).encode(ExternalEncoding)) + outfile.write('argsstring=%s,\n' % quote_python( + self.argsstring).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) + outfile.write('name=%s,\n' % quote_python( + self.name).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('read=%s,\n' % quote_python(self.read).encode(ExternalEncoding)) + outfile.write('read=%s,\n' % quote_python( + self.read).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('write=%s,\n' % quote_python(self.write).encode(ExternalEncoding)) + outfile.write('write=%s,\n' % quote_python( + self.write).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('bitfield=%s,\n' % quote_python(self.bitfield).encode(ExternalEncoding)) + outfile.write('bitfield=%s,\n' % quote_python( + self.bitfield).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('reimplements=[\n') level += 1 @@ -2169,7 +2456,8 @@ def exportLiteralChildren(self, outfile, level, name_): for reimplementedby in self.reimplementedby: showIndent(outfile, level) outfile.write('model_.reimplementedby(\n') - reimplementedby.exportLiteral(outfile, level, name_='reimplementedby') + reimplementedby.exportLiteral( + outfile, level, name_='reimplementedby') showIndent(outfile, level) outfile.write('),\n') level -= 1 @@ -2214,19 +2502,22 @@ def exportLiteralChildren(self, outfile, level, name_): if self.briefdescription: showIndent(outfile, level) outfile.write('briefdescription=model_.descriptionType(\n') - self.briefdescription.exportLiteral(outfile, level, name_='briefdescription') + self.briefdescription.exportLiteral( + outfile, level, name_='briefdescription') showIndent(outfile, level) outfile.write('),\n') if self.detaileddescription: showIndent(outfile, level) outfile.write('detaileddescription=model_.descriptionType(\n') - self.detaileddescription.exportLiteral(outfile, level, name_='detaileddescription') + self.detaileddescription.exportLiteral( + outfile, level, name_='detaileddescription') showIndent(outfile, level) outfile.write('),\n') if self.inbodydescription: showIndent(outfile, level) outfile.write('inbodydescription=model_.descriptionType(\n') - self.inbodydescription.exportLiteral(outfile, level, name_='inbodydescription') + self.inbodydescription.exportLiteral( + outfile, level, name_='inbodydescription') showIndent(outfile, level) outfile.write('),\n') if self.location: @@ -2259,12 +2550,14 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('initonly'): self.initonly = attrs.get('initonly').value @@ -2308,110 +2601,111 @@ def buildAttributes(self, attrs): self.settable = attrs.get('settable').value if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'templateparamlist': + nodeName_ == 'templateparamlist': obj_ = templateparamlistType.factory() obj_.build(child_) self.set_templateparamlist(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'type': + nodeName_ == 'type': obj_ = linkedTextType.factory() obj_.build(child_) self.set_type(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'definition': + nodeName_ == 'definition': definition_ = '' for text__content_ in child_.childNodes: definition_ += text__content_.nodeValue self.definition = definition_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'argsstring': + nodeName_ == 'argsstring': argsstring_ = '' for text__content_ in child_.childNodes: argsstring_ += text__content_.nodeValue self.argsstring = argsstring_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'name': + nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue self.name = name_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'read': + nodeName_ == 'read': read_ = '' for text__content_ in child_.childNodes: read_ += text__content_.nodeValue self.read = read_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'write': + nodeName_ == 'write': write_ = '' for text__content_ in child_.childNodes: write_ += text__content_.nodeValue self.write = write_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'bitfield': + nodeName_ == 'bitfield': bitfield_ = '' for text__content_ in child_.childNodes: bitfield_ += text__content_.nodeValue self.bitfield = bitfield_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'reimplements': + nodeName_ == 'reimplements': obj_ = reimplementType.factory() obj_.build(child_) self.reimplements.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'reimplementedby': + nodeName_ == 'reimplementedby': obj_ = reimplementType.factory() obj_.build(child_) self.reimplementedby.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'param': + nodeName_ == 'param': obj_ = paramType.factory() obj_.build(child_) self.param.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'enumvalue': + nodeName_ == 'enumvalue': obj_ = enumvalueType.factory() obj_.build(child_) self.enumvalue.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'initializer': + nodeName_ == 'initializer': obj_ = linkedTextType.factory() obj_.build(child_) self.set_initializer(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'exceptions': + nodeName_ == 'exceptions': obj_ = linkedTextType.factory() obj_.build(child_) self.set_exceptions(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'briefdescription': + nodeName_ == 'briefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_briefdescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'detaileddescription': + nodeName_ == 'detaileddescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_detaileddescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'inbodydescription': + nodeName_ == 'inbodydescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_inbodydescription(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'location': + nodeName_ == 'location': obj_ = locationType.factory() obj_.build(child_) self.set_location(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'references': + nodeName_ == 'references': obj_ = referenceType.factory() obj_.build(child_) self.references.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'referencedby': + nodeName_ == 'referencedby': obj_ = referenceType.factory() obj_.build(child_) self.referencedby.append(obj_) @@ -2421,8 +2715,10 @@ def buildChildren(self, child_, nodeName_): class definition(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if definition.subclass: return definition.subclass(*args_, **kwargs_) @@ -2431,6 +2727,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='definition', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -2442,33 +2739,40 @@ def export(self, outfile, level, namespace_='', name_='definition', namespacedef outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='definition'): pass + def exportChildren(self, outfile, level, namespace_='', name_='definition'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='definition'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -2476,21 +2780,25 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class definition class argsstring(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if argsstring.subclass: return argsstring.subclass(*args_, **kwargs_) @@ -2499,6 +2807,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='argsstring', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -2510,33 +2819,40 @@ def export(self, outfile, level, namespace_='', name_='argsstring', namespacedef outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='argsstring'): pass + def exportChildren(self, outfile, level, namespace_='', name_='argsstring'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='argsstring'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -2544,21 +2860,25 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class argsstring class read(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if read.subclass: return read.subclass(*args_, **kwargs_) @@ -2567,6 +2887,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='read', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -2578,33 +2899,40 @@ def export(self, outfile, level, namespace_='', name_='read', namespacedef_=''): outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='read'): pass + def exportChildren(self, outfile, level, namespace_='', name_='read'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='read'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -2612,21 +2940,25 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class read class write(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if write.subclass: return write.subclass(*args_, **kwargs_) @@ -2635,6 +2967,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='write', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -2646,33 +2979,40 @@ def export(self, outfile, level, namespace_='', name_='write', namespacedef_='') outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='write'): pass + def exportChildren(self, outfile, level, namespace_='', name_='write'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='write'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -2680,21 +3020,25 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class write class bitfield(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if bitfield.subclass: return bitfield.subclass(*args_, **kwargs_) @@ -2703,6 +3047,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='bitfield', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -2714,33 +3059,40 @@ def export(self, outfile, level, namespace_='', name_='bitfield', namespacedef_= outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='bitfield'): pass + def exportChildren(self, outfile, level, namespace_='', name_='bitfield'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='bitfield'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -2748,19 +3100,22 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class bitfield class descriptionType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, title=None, para=None, sect1=None, internal=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -2770,6 +3125,7 @@ def __init__(self, title=None, para=None, sect1=None, internal=None, mixedclass_ self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if descriptionType.subclass: return descriptionType.subclass(*args_, **kwargs_) @@ -2788,35 +3144,43 @@ def add_sect1(self, value): self.sect1.append(value) def insert_sect1(self, index, value): self.sect1[index] = value def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal + def export(self, outfile, level, namespace_='', name_='descriptionType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='descriptionType') + self.exportAttributes(outfile, level, namespace_, + name_='descriptionType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='descriptionType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='descriptionType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect1 is not None or self.internal is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='descriptionType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -2842,46 +3206,49 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'title': + nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'title', childobj_) + MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect1': + nodeName_ == 'sect1': childobj_ = docSect1Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect1', childobj_) + MixedContainer.TypeNone, 'sect1', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'internal': + nodeName_ == 'internal': childobj_ = docInternalType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'internal', childobj_) + MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class descriptionType @@ -2889,6 +3256,7 @@ def buildChildren(self, child_, nodeName_): class enumvalueType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, prot=None, id=None, name=None, initializer=None, briefdescription=None, detaileddescription=None, mixedclass_=None, content_=None): self.prot = prot self.id = id @@ -2900,6 +3268,7 @@ def __init__(self, prot=None, id=None, name=None, initializer=None, briefdescrip self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if enumvalueType.subclass: return enumvalueType.subclass(*args_, **kwargs_) @@ -2911,43 +3280,55 @@ def set_name(self, name): self.name = name def get_initializer(self): return self.initializer def set_initializer(self, initializer): self.initializer = initializer def get_briefdescription(self): return self.briefdescription - def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription + def set_briefdescription( + self, briefdescription): self.briefdescription = briefdescription + def get_detaileddescription(self): return self.detaileddescription - def set_detaileddescription(self, detaileddescription): self.detaileddescription = detaileddescription + def set_detaileddescription( + self, detaileddescription): self.detaileddescription = detaileddescription + def get_prot(self): return self.prot def set_prot(self, prot): self.prot = prot def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='enumvalueType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='enumvalueType') + self.exportAttributes(outfile, level, namespace_, + name_='enumvalueType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='enumvalueType'): if self.prot is not None: outfile.write(' prot=%s' % (quote_attrib(self.prot), )) if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='enumvalueType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.name is not None or self.initializer is not None or self.briefdescription is not None or self.detaileddescription is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='enumvalueType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.prot is not None: showIndent(outfile, level) @@ -2955,6 +3336,7 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -2980,51 +3362,54 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('prot'): self.prot = attrs.get('prot').value if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'name': + nodeName_ == 'name': value_ = [] for text_ in child_.childNodes: value_.append(text_.nodeValue) valuestr_ = ''.join(value_) obj_ = self.mixedclass_(MixedContainer.CategorySimple, - MixedContainer.TypeString, 'name', valuestr_) + MixedContainer.TypeString, 'name', valuestr_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'initializer': + nodeName_ == 'initializer': childobj_ = linkedTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'initializer', childobj_) + MixedContainer.TypeNone, 'initializer', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'briefdescription': + nodeName_ == 'briefdescription': childobj_ = descriptionType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'briefdescription', childobj_) + MixedContainer.TypeNone, 'briefdescription', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'detaileddescription': + nodeName_ == 'detaileddescription': childobj_ = descriptionType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'detaileddescription', childobj_) + MixedContainer.TypeNone, 'detaileddescription', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class enumvalueType @@ -3032,11 +3417,13 @@ def buildChildren(self, child_, nodeName_): class templateparamlistType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, param=None): if param is None: self.param = [] else: self.param = param + def factory(*args_, **kwargs_): if templateparamlistType.subclass: return templateparamlistType.subclass(*args_, **kwargs_) @@ -3047,10 +3434,12 @@ def get_param(self): return self.param def set_param(self, param): self.param = param def add_param(self, value): self.param.append(value) def insert_param(self, index, value): self.param[index] = value + def export(self, outfile, level, namespace_='', name_='templateparamlistType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='templateparamlistType') + self.exportAttributes(outfile, level, namespace_, + name_='templateparamlistType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -3058,25 +3447,31 @@ def export(self, outfile, level, namespace_='', name_='templateparamlistType', n outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='templateparamlistType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='templateparamlistType'): for param_ in self.param: param_.export(outfile, level, namespace_, name_='param') + def hasContent_(self): if ( self.param is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='templateparamlistType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('param=[\n') @@ -3090,17 +3485,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'param': + nodeName_ == 'param': obj_ = paramType.factory() obj_.build(child_) self.param.append(obj_) @@ -3110,6 +3508,7 @@ def buildChildren(self, child_, nodeName_): class paramType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, type_=None, declname=None, defname=None, array=None, defval=None, briefdescription=None): self.type_ = type_ self.declname = declname @@ -3117,6 +3516,7 @@ def __init__(self, type_=None, declname=None, defname=None, array=None, defval=N self.array = array self.defval = defval self.briefdescription = briefdescription + def factory(*args_, **kwargs_): if paramType.subclass: return paramType.subclass(*args_, **kwargs_) @@ -3134,7 +3534,10 @@ def set_array(self, array): self.array = array def get_defval(self): return self.defval def set_defval(self, defval): self.defval = defval def get_briefdescription(self): return self.briefdescription - def set_briefdescription(self, briefdescription): self.briefdescription = briefdescription + + def set_briefdescription( + self, briefdescription): self.briefdescription = briefdescription + def export(self, outfile, level, namespace_='', name_='paramType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3146,24 +3549,31 @@ def export(self, outfile, level, namespace_='', name_='paramType', namespacedef_ outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='paramType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='paramType'): if self.type_: self.type_.export(outfile, level, namespace_, name_='type') if self.declname is not None: showIndent(outfile, level) - outfile.write('<%sdeclname>%s\n' % (namespace_, self.format_string(quote_xml(self.declname).encode(ExternalEncoding), input_name='declname'), namespace_)) + outfile.write('<%sdeclname>%s\n' % (namespace_, self.format_string( + quote_xml(self.declname).encode(ExternalEncoding), input_name='declname'), namespace_)) if self.defname is not None: showIndent(outfile, level) - outfile.write('<%sdefname>%s\n' % (namespace_, self.format_string(quote_xml(self.defname).encode(ExternalEncoding), input_name='defname'), namespace_)) + outfile.write('<%sdefname>%s\n' % (namespace_, self.format_string( + quote_xml(self.defname).encode(ExternalEncoding), input_name='defname'), namespace_)) if self.array is not None: showIndent(outfile, level) - outfile.write('<%sarray>%s\n' % (namespace_, self.format_string(quote_xml(self.array).encode(ExternalEncoding), input_name='array'), namespace_)) + outfile.write('<%sarray>%s\n' % (namespace_, self.format_string( + quote_xml(self.array).encode(ExternalEncoding), input_name='array'), namespace_)) if self.defval: self.defval.export(outfile, level, namespace_, name_='defval') if self.briefdescription: - self.briefdescription.export(outfile, level, namespace_, name_='briefdescription') + self.briefdescription.export( + outfile, level, namespace_, name_='briefdescription') + def hasContent_(self): if ( self.type_ is not None or @@ -3172,17 +3582,20 @@ def hasContent_(self): self.array is not None or self.defval is not None or self.briefdescription is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='paramType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): if self.type_: showIndent(outfile, level) @@ -3191,11 +3604,14 @@ def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('),\n') showIndent(outfile, level) - outfile.write('declname=%s,\n' % quote_python(self.declname).encode(ExternalEncoding)) + outfile.write('declname=%s,\n' % quote_python( + self.declname).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('defname=%s,\n' % quote_python(self.defname).encode(ExternalEncoding)) + outfile.write('defname=%s,\n' % quote_python( + self.defname).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('array=%s,\n' % quote_python(self.array).encode(ExternalEncoding)) + outfile.write('array=%s,\n' % quote_python( + self.array).encode(ExternalEncoding)) if self.defval: showIndent(outfile, level) outfile.write('defval=model_.linkedTextType(\n') @@ -3205,48 +3621,52 @@ def exportLiteralChildren(self, outfile, level, name_): if self.briefdescription: showIndent(outfile, level) outfile.write('briefdescription=model_.descriptionType(\n') - self.briefdescription.exportLiteral(outfile, level, name_='briefdescription') + self.briefdescription.exportLiteral( + outfile, level, name_='briefdescription') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'type': + nodeName_ == 'type': obj_ = linkedTextType.factory() obj_.build(child_) self.set_type(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'declname': + nodeName_ == 'declname': declname_ = '' for text__content_ in child_.childNodes: declname_ += text__content_.nodeValue self.declname = declname_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'defname': + nodeName_ == 'defname': defname_ = '' for text__content_ in child_.childNodes: defname_ += text__content_.nodeValue self.defname = defname_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'array': + nodeName_ == 'array': array_ = '' for text__content_ in child_.childNodes: array_ += text__content_.nodeValue self.array = array_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'defval': + nodeName_ == 'defval': obj_ = linkedTextType.factory() obj_.build(child_) self.set_defval(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'briefdescription': + nodeName_ == 'briefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_briefdescription(obj_) @@ -3256,8 +3676,10 @@ def buildChildren(self, child_, nodeName_): class declname(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if declname.subclass: return declname.subclass(*args_, **kwargs_) @@ -3266,6 +3688,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='declname', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3277,33 +3700,40 @@ def export(self, outfile, level, namespace_='', name_='declname', namespacedef_= outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='declname'): pass + def exportChildren(self, outfile, level, namespace_='', name_='declname'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='declname'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -3311,21 +3741,25 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class declname class defname(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if defname.subclass: return defname.subclass(*args_, **kwargs_) @@ -3334,6 +3768,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='defname', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3345,33 +3780,40 @@ def export(self, outfile, level, namespace_='', name_='defname', namespacedef_=' outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='defname'): pass + def exportChildren(self, outfile, level, namespace_='', name_='defname'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='defname'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -3379,21 +3821,25 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class defname class array(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if array.subclass: return array.subclass(*args_, **kwargs_) @@ -3402,6 +3848,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='array', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3413,33 +3860,40 @@ def export(self, outfile, level, namespace_='', name_='array', namespacedef_='') outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='array'): pass + def exportChildren(self, outfile, level, namespace_='', name_='array'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='array'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -3447,19 +3901,22 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class array class linkedTextType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, ref=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -3469,6 +3926,7 @@ def __init__(self, ref=None, mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if linkedTextType.subclass: return linkedTextType.subclass(*args_, **kwargs_) @@ -3479,32 +3937,40 @@ def get_ref(self): return self.ref def set_ref(self, ref): self.ref = ref def add_ref(self, value): self.ref.append(value) def insert_ref(self, index, value): self.ref[index] = value + def export(self, outfile, level, namespace_='', name_='linkedTextType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='linkedTextType') + self.exportAttributes(outfile, level, namespace_, + name_='linkedTextType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='linkedTextType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='linkedTextType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.ref is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='linkedTextType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -3512,25 +3978,28 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'ref': + nodeName_ == 'ref': childobj_ = docRefTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'ref', childobj_) + MixedContainer.TypeNone, 'ref', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class linkedTextType @@ -3538,11 +4007,13 @@ def buildChildren(self, child_, nodeName_): class graphType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, node=None): if node is None: self.node = [] else: self.node = node + def factory(*args_, **kwargs_): if graphType.subclass: return graphType.subclass(*args_, **kwargs_) @@ -3553,6 +4024,7 @@ def get_node(self): return self.node def set_node(self, node): self.node = node def add_node(self, value): self.node.append(value) def insert_node(self, index, value): self.node[index] = value + def export(self, outfile, level, namespace_='', name_='graphType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3564,25 +4036,31 @@ def export(self, outfile, level, namespace_='', name_='graphType', namespacedef_ outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='graphType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='graphType'): for node_ in self.node: node_.export(outfile, level, namespace_, name_='node') + def hasContent_(self): if ( self.node is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='graphType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('node=[\n') @@ -3596,17 +4074,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'node': + nodeName_ == 'node': obj_ = nodeType.factory() obj_.build(child_) self.node.append(obj_) @@ -3616,6 +4097,7 @@ def buildChildren(self, child_, nodeName_): class nodeType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, label=None, link=None, childnode=None): self.id = id self.label = label @@ -3624,6 +4106,7 @@ def __init__(self, id=None, label=None, link=None, childnode=None): self.childnode = [] else: self.childnode = childnode + def factory(*args_, **kwargs_): if nodeType.subclass: return nodeType.subclass(*args_, **kwargs_) @@ -3640,6 +4123,7 @@ def add_childnode(self, value): self.childnode.append(value) def insert_childnode(self, index, value): self.childnode[index] = value def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='nodeType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3651,38 +4135,47 @@ def export(self, outfile, level, namespace_='', name_='nodeType', namespacedef_= outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='nodeType'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='nodeType'): if self.label is not None: showIndent(outfile, level) - outfile.write('<%slabel>%s\n' % (namespace_, self.format_string(quote_xml(self.label).encode(ExternalEncoding), input_name='label'), namespace_)) + outfile.write('<%slabel>%s\n' % (namespace_, self.format_string( + quote_xml(self.label).encode(ExternalEncoding), input_name='label'), namespace_)) if self.link: self.link.export(outfile, level, namespace_, name_='link') for childnode_ in self.childnode: childnode_.export(outfile, level, namespace_, name_='childnode') + def hasContent_(self): if ( self.label is not None or self.link is not None or self.childnode is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='nodeType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) - outfile.write('label=%s,\n' % quote_python(self.label).encode(ExternalEncoding)) + outfile.write('label=%s,\n' % quote_python( + self.label).encode(ExternalEncoding)) if self.link: showIndent(outfile, level) outfile.write('link=model_.linkType(\n') @@ -3701,29 +4194,32 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'label': + nodeName_ == 'label': label_ = '' for text__content_ in child_.childNodes: label_ += text__content_.nodeValue self.label = label_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'link': + nodeName_ == 'link': obj_ = linkType.factory() obj_.build(child_) self.set_link(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'childnode': + nodeName_ == 'childnode': obj_ = childnodeType.factory() obj_.build(child_) self.childnode.append(obj_) @@ -3733,8 +4229,10 @@ def buildChildren(self, child_, nodeName_): class label(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if label.subclass: return label.subclass(*args_, **kwargs_) @@ -3743,6 +4241,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='label', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3754,33 +4253,40 @@ def export(self, outfile, level, namespace_='', name_='label', namespacedef_='') outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='label'): pass + def exportChildren(self, outfile, level, namespace_='', name_='label'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='label'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -3788,19 +4294,22 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class label class childnodeType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, relation=None, refid=None, edgelabel=None): self.relation = relation self.refid = refid @@ -3808,6 +4317,7 @@ def __init__(self, relation=None, refid=None, edgelabel=None): self.edgelabel = [] else: self.edgelabel = edgelabel + def factory(*args_, **kwargs_): if childnodeType.subclass: return childnodeType.subclass(*args_, **kwargs_) @@ -3822,10 +4332,12 @@ def get_relation(self): return self.relation def set_relation(self, relation): self.relation = relation def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid + def export(self, outfile, level, namespace_='', name_='childnodeType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='childnodeType') + self.exportAttributes(outfile, level, namespace_, + name_='childnodeType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -3833,27 +4345,34 @@ def export(self, outfile, level, namespace_='', name_='childnodeType', namespace outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='childnodeType'): if self.relation is not None: outfile.write(' relation=%s' % (quote_attrib(self.relation), )) if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='childnodeType'): for edgelabel_ in self.edgelabel: showIndent(outfile, level) - outfile.write('<%sedgelabel>%s\n' % (namespace_, self.format_string(quote_xml(edgelabel_).encode(ExternalEncoding), input_name='edgelabel'), namespace_)) + outfile.write('<%sedgelabel>%s\n' % (namespace_, self.format_string( + quote_xml(edgelabel_).encode(ExternalEncoding), input_name='edgelabel'), namespace_)) + def hasContent_(self): if ( self.edgelabel is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='childnodeType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.relation is not None: showIndent(outfile, level) @@ -3861,30 +4380,35 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('edgelabel=[\n') level += 1 for edgelabel in self.edgelabel: showIndent(outfile, level) - outfile.write('%s,\n' % quote_python(edgelabel).encode(ExternalEncoding)) + outfile.write('%s,\n' % quote_python( + edgelabel).encode(ExternalEncoding)) level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('relation'): self.relation = attrs.get('relation').value if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'edgelabel': + nodeName_ == 'edgelabel': edgelabel_ = '' for text__content_ in child_.childNodes: edgelabel_ += text__content_.nodeValue @@ -3895,8 +4419,10 @@ def buildChildren(self, child_, nodeName_): class edgelabel(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if edgelabel.subclass: return edgelabel.subclass(*args_, **kwargs_) @@ -3905,6 +4431,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='edgelabel', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3916,33 +4443,40 @@ def export(self, outfile, level, namespace_='', name_='edgelabel', namespacedef_ outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='edgelabel'): pass + def exportChildren(self, outfile, level, namespace_='', name_='edgelabel'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='edgelabel'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -3950,23 +4484,27 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class edgelabel class linkType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, refid=None, external=None, valueOf_=''): self.refid = refid self.external = external self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if linkType.subclass: return linkType.subclass(*args_, **kwargs_) @@ -3979,6 +4517,7 @@ def get_external(self): return self.external def set_external(self, external): self.external = external def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='linkType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -3990,31 +4529,38 @@ def export(self, outfile, level, namespace_='', name_='linkType', namespacedef_= outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='linkType'): if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.external is not None: - outfile.write(' external=%s' % (self.format_string(quote_attrib(self.external).encode(ExternalEncoding), input_name='external'), )) + outfile.write(' external=%s' % (self.format_string(quote_attrib( + self.external).encode(ExternalEncoding), input_name='external'), )) + def exportChildren(self, outfile, level, namespace_='', name_='linkType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='linkType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) @@ -4022,9 +4568,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.external is not None: showIndent(outfile, level) outfile.write('external = %s,\n' % (self.external,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -4032,27 +4580,31 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value if attrs.get('external'): self.external = attrs.get('external').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class linkType class listingType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, codeline=None): if codeline is None: self.codeline = [] else: self.codeline = codeline + def factory(*args_, **kwargs_): if listingType.subclass: return listingType.subclass(*args_, **kwargs_) @@ -4063,6 +4615,7 @@ def get_codeline(self): return self.codeline def set_codeline(self, codeline): self.codeline = codeline def add_codeline(self, value): self.codeline.append(value) def insert_codeline(self, index, value): self.codeline[index] = value + def export(self, outfile, level, namespace_='', name_='listingType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -4074,25 +4627,31 @@ def export(self, outfile, level, namespace_='', name_='listingType', namespacede outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='listingType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='listingType'): for codeline_ in self.codeline: codeline_.export(outfile, level, namespace_, name_='codeline') + def hasContent_(self): if ( self.codeline is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='listingType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('codeline=[\n') @@ -4106,17 +4665,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'codeline': + nodeName_ == 'codeline': obj_ = codelineType.factory() obj_.build(child_) self.codeline.append(obj_) @@ -4126,6 +4688,7 @@ def buildChildren(self, child_, nodeName_): class codelineType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, external=None, lineno=None, refkind=None, refid=None, highlight=None): self.external = external self.lineno = lineno @@ -4135,6 +4698,7 @@ def __init__(self, external=None, lineno=None, refkind=None, refid=None, highlig self.highlight = [] else: self.highlight = highlight + def factory(*args_, **kwargs_): if codelineType.subclass: return codelineType.subclass(*args_, **kwargs_) @@ -4153,6 +4717,7 @@ def get_refkind(self): return self.refkind def set_refkind(self, refkind): self.refkind = refkind def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid + def export(self, outfile, level, namespace_='', name_='codelineType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -4164,30 +4729,37 @@ def export(self, outfile, level, namespace_='', name_='codelineType', namespaced outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='codelineType'): if self.external is not None: outfile.write(' external=%s' % (quote_attrib(self.external), )) if self.lineno is not None: - outfile.write(' lineno="%s"' % self.format_integer(self.lineno, input_name='lineno')) + outfile.write(' lineno="%s"' % self.format_integer( + self.lineno, input_name='lineno')) if self.refkind is not None: outfile.write(' refkind=%s' % (quote_attrib(self.refkind), )) if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='codelineType'): for highlight_ in self.highlight: highlight_.export(outfile, level, namespace_, name_='highlight') + def hasContent_(self): if ( self.highlight is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='codelineType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.external is not None: showIndent(outfile, level) @@ -4201,6 +4773,7 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('highlight=[\n') @@ -4214,12 +4787,14 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('external'): self.external = attrs.get('external').value @@ -4232,9 +4807,10 @@ def buildAttributes(self, attrs): self.refkind = attrs.get('refkind').value if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'highlight': + nodeName_ == 'highlight': obj_ = highlightType.factory() obj_.build(child_) self.highlight.append(obj_) @@ -4244,6 +4820,7 @@ def buildChildren(self, child_, nodeName_): class highlightType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, classxx=None, sp=None, ref=None, mixedclass_=None, content_=None): self.classxx = classxx if mixedclass_ is None: @@ -4254,6 +4831,7 @@ def __init__(self, classxx=None, sp=None, ref=None, mixedclass_=None, content_=N self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if highlightType.subclass: return highlightType.subclass(*args_, **kwargs_) @@ -4270,36 +4848,44 @@ def add_ref(self, value): self.ref.append(value) def insert_ref(self, index, value): self.ref[index] = value def get_class(self): return self.classxx def set_class(self, classxx): self.classxx = classxx + def export(self, outfile, level, namespace_='', name_='highlightType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='highlightType') + self.exportAttributes(outfile, level, namespace_, + name_='highlightType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='highlightType'): if self.classxx is not None: outfile.write(' class=%s' % (quote_attrib(self.classxx), )) + def exportChildren(self, outfile, level, namespace_='', name_='highlightType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.sp is not None or self.ref is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='highlightType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.classxx is not None: showIndent(outfile, level) outfile.write('classxx = "%s",\n' % (self.classxx,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -4313,35 +4899,38 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('class'): self.classxx = attrs.get('class').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sp': + nodeName_ == 'sp': value_ = [] for text_ in child_.childNodes: value_.append(text_.nodeValue) valuestr_ = ''.join(value_) obj_ = self.mixedclass_(MixedContainer.CategorySimple, - MixedContainer.TypeString, 'sp', valuestr_) + MixedContainer.TypeString, 'sp', valuestr_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'ref': + nodeName_ == 'ref': childobj_ = docRefTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'ref', childobj_) + MixedContainer.TypeNone, 'ref', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class highlightType @@ -4349,8 +4938,10 @@ def buildChildren(self, child_, nodeName_): class sp(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if sp.subclass: return sp.subclass(*args_, **kwargs_) @@ -4359,6 +4950,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='sp', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -4370,33 +4962,40 @@ def export(self, outfile, level, namespace_='', name_='sp', namespacedef_=''): outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='sp'): pass + def exportChildren(self, outfile, level, namespace_='', name_='sp'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='sp'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -4404,19 +5003,22 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class sp class referenceType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, endline=None, startline=None, refid=None, compoundref=None, valueOf_='', mixedclass_=None, content_=None): self.endline = endline self.startline = startline @@ -4430,6 +5032,7 @@ def __init__(self, endline=None, startline=None, refid=None, compoundref=None, v self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if referenceType.subclass: return referenceType.subclass(*args_, **kwargs_) @@ -4446,42 +5049,53 @@ def get_compoundref(self): return self.compoundref def set_compoundref(self, compoundref): self.compoundref = compoundref def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='referenceType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='referenceType') + self.exportAttributes(outfile, level, namespace_, + name_='referenceType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='referenceType'): if self.endline is not None: - outfile.write(' endline="%s"' % self.format_integer(self.endline, input_name='endline')) + outfile.write(' endline="%s"' % self.format_integer( + self.endline, input_name='endline')) if self.startline is not None: - outfile.write(' startline="%s"' % self.format_integer(self.startline, input_name='startline')) + outfile.write(' startline="%s"' % self.format_integer( + self.startline, input_name='startline')) if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.compoundref is not None: - outfile.write(' compoundref=%s' % (self.format_string(quote_attrib(self.compoundref).encode(ExternalEncoding), input_name='compoundref'), )) + outfile.write(' compoundref=%s' % (self.format_string(quote_attrib( + self.compoundref).encode(ExternalEncoding), input_name='compoundref'), )) + def exportChildren(self, outfile, level, namespace_='', name_='referenceType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='referenceType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.endline is not None: showIndent(outfile, level) @@ -4495,9 +5109,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.compoundref is not None: showIndent(outfile, level) outfile.write('compoundref = %s,\n' % (self.compoundref,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -4505,6 +5121,7 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('endline'): try: @@ -4520,21 +5137,23 @@ def buildAttributes(self, attrs): self.refid = attrs.get('refid').value if attrs.get('compoundref'): self.compoundref = attrs.get('compoundref').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class referenceType class locationType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, bodystart=None, line=None, bodyend=None, bodyfile=None, file=None, valueOf_=''): self.bodystart = bodystart self.line = line @@ -4542,6 +5161,7 @@ def __init__(self, bodystart=None, line=None, bodyend=None, bodyfile=None, file= self.bodyfile = bodyfile self.file = file self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if locationType.subclass: return locationType.subclass(*args_, **kwargs_) @@ -4560,6 +5180,7 @@ def get_file(self): return self.file def set_file(self, file): self.file = file def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='locationType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -4571,37 +5192,47 @@ def export(self, outfile, level, namespace_='', name_='locationType', namespaced outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='locationType'): if self.bodystart is not None: - outfile.write(' bodystart="%s"' % self.format_integer(self.bodystart, input_name='bodystart')) + outfile.write(' bodystart="%s"' % self.format_integer( + self.bodystart, input_name='bodystart')) if self.line is not None: - outfile.write(' line="%s"' % self.format_integer(self.line, input_name='line')) + outfile.write(' line="%s"' % self.format_integer( + self.line, input_name='line')) if self.bodyend is not None: - outfile.write(' bodyend="%s"' % self.format_integer(self.bodyend, input_name='bodyend')) + outfile.write(' bodyend="%s"' % self.format_integer( + self.bodyend, input_name='bodyend')) if self.bodyfile is not None: - outfile.write(' bodyfile=%s' % (self.format_string(quote_attrib(self.bodyfile).encode(ExternalEncoding), input_name='bodyfile'), )) + outfile.write(' bodyfile=%s' % (self.format_string(quote_attrib( + self.bodyfile).encode(ExternalEncoding), input_name='bodyfile'), )) if self.file is not None: - outfile.write(' file=%s' % (self.format_string(quote_attrib(self.file).encode(ExternalEncoding), input_name='file'), )) + outfile.write(' file=%s' % (self.format_string(quote_attrib( + self.file).encode(ExternalEncoding), input_name='file'), )) + def exportChildren(self, outfile, level, namespace_='', name_='locationType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='locationType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.bodystart is not None: showIndent(outfile, level) @@ -4618,9 +5249,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.file is not None: showIndent(outfile, level) outfile.write('file = %s,\n' % (self.file,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -4628,6 +5261,7 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('bodystart'): try: @@ -4648,17 +5282,19 @@ def buildAttributes(self, attrs): self.bodyfile = attrs.get('bodyfile').value if attrs.get('file'): self.file = attrs.get('file').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class locationType class docSect1Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, title=None, para=None, sect2=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: @@ -4669,6 +5305,7 @@ def __init__(self, id=None, title=None, para=None, sect2=None, internal=None, mi self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docSect1Type.subclass: return docSect1Type.subclass(*args_, **kwargs_) @@ -4689,6 +5326,7 @@ def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='docSect1Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -4696,31 +5334,38 @@ def export(self, outfile, level, namespace_='', name_='docSect1Type', namespaced outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docSect1Type'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docSect1Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect2 is not None or self.internal is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docSect1Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -4746,47 +5391,50 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'title': + nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'title', childobj_) + MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect2': + nodeName_ == 'sect2': childobj_ = docSect2Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect2', childobj_) + MixedContainer.TypeNone, 'sect2', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'internal': + nodeName_ == 'internal': childobj_ = docInternalS1Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'internal', childobj_) + MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect1Type @@ -4794,6 +5442,7 @@ def buildChildren(self, child_, nodeName_): class docSect2Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, title=None, para=None, sect3=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: @@ -4804,6 +5453,7 @@ def __init__(self, id=None, title=None, para=None, sect3=None, internal=None, mi self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docSect2Type.subclass: return docSect2Type.subclass(*args_, **kwargs_) @@ -4824,6 +5474,7 @@ def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='docSect2Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -4831,31 +5482,38 @@ def export(self, outfile, level, namespace_='', name_='docSect2Type', namespaced outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docSect2Type'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docSect2Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect3 is not None or self.internal is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docSect2Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -4881,47 +5539,50 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'title': + nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'title', childobj_) + MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect3': + nodeName_ == 'sect3': childobj_ = docSect3Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect3', childobj_) + MixedContainer.TypeNone, 'sect3', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'internal': + nodeName_ == 'internal': childobj_ = docInternalS2Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'internal', childobj_) + MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect2Type @@ -4929,6 +5590,7 @@ def buildChildren(self, child_, nodeName_): class docSect3Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, title=None, para=None, sect4=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: @@ -4939,6 +5601,7 @@ def __init__(self, id=None, title=None, para=None, sect4=None, internal=None, mi self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docSect3Type.subclass: return docSect3Type.subclass(*args_, **kwargs_) @@ -4959,6 +5622,7 @@ def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='docSect3Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -4966,31 +5630,38 @@ def export(self, outfile, level, namespace_='', name_='docSect3Type', namespaced outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docSect3Type'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docSect3Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.title is not None or self.para is not None or self.sect4 is not None or self.internal is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docSect3Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -5016,47 +5687,50 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'title': + nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'title', childobj_) + MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect4': + nodeName_ == 'sect4': childobj_ = docSect4Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect4', childobj_) + MixedContainer.TypeNone, 'sect4', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'internal': + nodeName_ == 'internal': childobj_ = docInternalS3Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'internal', childobj_) + MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect3Type @@ -5064,6 +5738,7 @@ def buildChildren(self, child_, nodeName_): class docSect4Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, title=None, para=None, internal=None, mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: @@ -5074,6 +5749,7 @@ def __init__(self, id=None, title=None, para=None, internal=None, mixedclass_=No self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docSect4Type.subclass: return docSect4Type.subclass(*args_, **kwargs_) @@ -5090,6 +5766,7 @@ def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='docSect4Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -5097,30 +5774,37 @@ def export(self, outfile, level, namespace_='', name_='docSect4Type', namespaced outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docSect4Type'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docSect4Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.title is not None or self.para is not None or self.internal is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docSect4Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -5140,40 +5824,43 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'title': + nodeName_ == 'title': childobj_ = docTitleType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'title', childobj_) + MixedContainer.TypeNone, 'title', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'internal': + nodeName_ == 'internal': childobj_ = docInternalS4Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'internal', childobj_) + MixedContainer.TypeNone, 'internal', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docSect4Type @@ -5181,6 +5868,7 @@ def buildChildren(self, child_, nodeName_): class docInternalType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, para=None, sect1=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5190,6 +5878,7 @@ def __init__(self, para=None, sect1=None, mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docInternalType.subclass: return docInternalType.subclass(*args_, **kwargs_) @@ -5204,33 +5893,41 @@ def get_sect1(self): return self.sect1 def set_sect1(self, sect1): self.sect1 = sect1 def add_sect1(self, value): self.sect1.append(value) def insert_sect1(self, index, value): self.sect1[index] = value + def export(self, outfile, level, namespace_='', name_='docInternalType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docInternalType') + self.exportAttributes(outfile, level, namespace_, + name_='docInternalType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docInternalType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docInternalType'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.para is not None or self.sect1 is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docInternalType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -5244,32 +5941,35 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect1': + nodeName_ == 'sect1': childobj_ = docSect1Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect1', childobj_) + MixedContainer.TypeNone, 'sect1', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalType @@ -5277,6 +5977,7 @@ def buildChildren(self, child_, nodeName_): class docInternalS1Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, para=None, sect2=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5286,6 +5987,7 @@ def __init__(self, para=None, sect2=None, mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docInternalS1Type.subclass: return docInternalS1Type.subclass(*args_, **kwargs_) @@ -5300,33 +6002,41 @@ def get_sect2(self): return self.sect2 def set_sect2(self, sect2): self.sect2 = sect2 def add_sect2(self, value): self.sect2.append(value) def insert_sect2(self, index, value): self.sect2[index] = value + def export(self, outfile, level, namespace_='', name_='docInternalS1Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docInternalS1Type') + self.exportAttributes(outfile, level, namespace_, + name_='docInternalS1Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS1Type'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docInternalS1Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.para is not None or self.sect2 is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docInternalS1Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -5340,32 +6050,35 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect2': + nodeName_ == 'sect2': childobj_ = docSect2Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect2', childobj_) + MixedContainer.TypeNone, 'sect2', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS1Type @@ -5373,6 +6086,7 @@ def buildChildren(self, child_, nodeName_): class docInternalS2Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5382,6 +6096,7 @@ def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docInternalS2Type.subclass: return docInternalS2Type.subclass(*args_, **kwargs_) @@ -5396,33 +6111,41 @@ def get_sect3(self): return self.sect3 def set_sect3(self, sect3): self.sect3 = sect3 def add_sect3(self, value): self.sect3.append(value) def insert_sect3(self, index, value): self.sect3[index] = value + def export(self, outfile, level, namespace_='', name_='docInternalS2Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docInternalS2Type') + self.exportAttributes(outfile, level, namespace_, + name_='docInternalS2Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS2Type'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docInternalS2Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.para is not None or self.sect3 is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docInternalS2Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -5436,32 +6159,35 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect3': + nodeName_ == 'sect3': childobj_ = docSect3Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect3', childobj_) + MixedContainer.TypeNone, 'sect3', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS2Type @@ -5469,6 +6195,7 @@ def buildChildren(self, child_, nodeName_): class docInternalS3Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5478,6 +6205,7 @@ def __init__(self, para=None, sect3=None, mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docInternalS3Type.subclass: return docInternalS3Type.subclass(*args_, **kwargs_) @@ -5492,33 +6220,41 @@ def get_sect3(self): return self.sect3 def set_sect3(self, sect3): self.sect3 = sect3 def add_sect3(self, value): self.sect3.append(value) def insert_sect3(self, index, value): self.sect3[index] = value + def export(self, outfile, level, namespace_='', name_='docInternalS3Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docInternalS3Type') + self.exportAttributes(outfile, level, namespace_, + name_='docInternalS3Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS3Type'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docInternalS3Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.para is not None or self.sect3 is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docInternalS3Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -5532,32 +6268,35 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect3': + nodeName_ == 'sect3': childobj_ = docSect4Type.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'sect3', childobj_) + MixedContainer.TypeNone, 'sect3', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS3Type @@ -5565,6 +6304,7 @@ def buildChildren(self, child_, nodeName_): class docInternalS4Type(GeneratedsSuper): subclass = None superclass = None + def __init__(self, para=None, mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5574,6 +6314,7 @@ def __init__(self, para=None, mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docInternalS4Type.subclass: return docInternalS4Type.subclass(*args_, **kwargs_) @@ -5584,32 +6325,40 @@ def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value + def export(self, outfile, level, namespace_='', name_='docInternalS4Type', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docInternalS4Type') + self.exportAttributes(outfile, level, namespace_, + name_='docInternalS4Type') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docInternalS4Type'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docInternalS4Type'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.para is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docInternalS4Type'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -5617,25 +6366,28 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': childobj_ = docParaType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'para', childobj_) + MixedContainer.TypeNone, 'para', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docInternalS4Type @@ -5643,6 +6395,7 @@ def buildChildren(self, child_, nodeName_): class docTitleType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5652,6 +6405,7 @@ def __init__(self, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docTitleType.subclass: return docTitleType.subclass(*args_, **kwargs_) @@ -5660,6 +6414,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docTitleType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -5667,33 +6422,40 @@ def export(self, outfile, level, namespace_='', name_='docTitleType', namespaced outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docTitleType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docTitleType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docTitleType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -5701,23 +6463,26 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docTitleType class docParaType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5727,6 +6492,7 @@ def __init__(self, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docParaType.subclass: return docParaType.subclass(*args_, **kwargs_) @@ -5735,6 +6501,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docParaType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -5742,33 +6509,40 @@ def export(self, outfile, level, namespace_='', name_='docParaType', namespacede outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docParaType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docParaType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docParaType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -5776,23 +6550,26 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docParaType class docMarkupType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -5802,6 +6579,7 @@ def __init__(self, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docMarkupType.subclass: return docMarkupType.subclass(*args_, **kwargs_) @@ -5810,40 +6588,49 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docMarkupType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docMarkupType') + self.exportAttributes(outfile, level, namespace_, + name_='docMarkupType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docMarkupType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docMarkupType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docMarkupType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -5851,23 +6638,26 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docMarkupType class docURLLink(GeneratedsSuper): subclass = None superclass = None + def __init__(self, url=None, valueOf_='', mixedclass_=None, content_=None): self.url = url if mixedclass_ is None: @@ -5878,6 +6668,7 @@ def __init__(self, url=None, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docURLLink.subclass: return docURLLink.subclass(*args_, **kwargs_) @@ -5888,6 +6679,7 @@ def get_url(self): return self.url def set_url(self, url): self.url = url def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docURLLink', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -5895,36 +6687,44 @@ def export(self, outfile, level, namespace_='', name_='docURLLink', namespacedef outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docURLLink'): if self.url is not None: - outfile.write(' url=%s' % (self.format_string(quote_attrib(self.url).encode(ExternalEncoding), input_name='url'), )) + outfile.write(' url=%s' % (self.format_string(quote_attrib( + self.url).encode(ExternalEncoding), input_name='url'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docURLLink'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docURLLink'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.url is not None: showIndent(outfile, level) outfile.write('url = %s,\n' % (self.url,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -5932,24 +6732,27 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('url'): self.url = attrs.get('url').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docURLLink class docAnchorType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: @@ -5960,6 +6763,7 @@ def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docAnchorType.subclass: return docAnchorType.subclass(*args_, **kwargs_) @@ -5970,43 +6774,53 @@ def get_id(self): return self.id def set_id(self, id): self.id = id def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docAnchorType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docAnchorType') + self.exportAttributes(outfile, level, namespace_, + name_='docAnchorType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docAnchorType'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docAnchorType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docAnchorType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -6014,24 +6828,27 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docAnchorType class docFormulaType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: @@ -6042,6 +6859,7 @@ def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docFormulaType.subclass: return docFormulaType.subclass(*args_, **kwargs_) @@ -6052,43 +6870,53 @@ def get_id(self): return self.id def set_id(self, id): self.id = id def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docFormulaType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docFormulaType') + self.exportAttributes(outfile, level, namespace_, + name_='docFormulaType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docFormulaType'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docFormulaType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docFormulaType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -6096,27 +6924,31 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docFormulaType class docIndexEntryType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, primaryie=None, secondaryie=None): self.primaryie = primaryie self.secondaryie = secondaryie + def factory(*args_, **kwargs_): if docIndexEntryType.subclass: return docIndexEntryType.subclass(*args_, **kwargs_) @@ -6127,10 +6959,12 @@ def get_primaryie(self): return self.primaryie def set_primaryie(self, primaryie): self.primaryie = primaryie def get_secondaryie(self): return self.secondaryie def set_secondaryie(self, secondaryie): self.secondaryie = secondaryie + def export(self, outfile, level, namespace_='', name_='docIndexEntryType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docIndexEntryType') + self.exportAttributes(outfile, level, namespace_, + name_='docIndexEntryType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -6138,52 +6972,65 @@ def export(self, outfile, level, namespace_='', name_='docIndexEntryType', names outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docIndexEntryType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docIndexEntryType'): if self.primaryie is not None: showIndent(outfile, level) - outfile.write('<%sprimaryie>%s\n' % (namespace_, self.format_string(quote_xml(self.primaryie).encode(ExternalEncoding), input_name='primaryie'), namespace_)) + outfile.write('<%sprimaryie>%s\n' % (namespace_, self.format_string( + quote_xml(self.primaryie).encode(ExternalEncoding), input_name='primaryie'), namespace_)) if self.secondaryie is not None: showIndent(outfile, level) - outfile.write('<%ssecondaryie>%s\n' % (namespace_, self.format_string(quote_xml(self.secondaryie).encode(ExternalEncoding), input_name='secondaryie'), namespace_)) + outfile.write('<%ssecondaryie>%s\n' % (namespace_, self.format_string( + quote_xml(self.secondaryie).encode(ExternalEncoding), input_name='secondaryie'), namespace_)) + def hasContent_(self): if ( self.primaryie is not None or self.secondaryie is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docIndexEntryType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) - outfile.write('primaryie=%s,\n' % quote_python(self.primaryie).encode(ExternalEncoding)) + outfile.write('primaryie=%s,\n' % quote_python( + self.primaryie).encode(ExternalEncoding)) showIndent(outfile, level) - outfile.write('secondaryie=%s,\n' % quote_python(self.secondaryie).encode(ExternalEncoding)) + outfile.write('secondaryie=%s,\n' % quote_python( + self.secondaryie).encode(ExternalEncoding)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'primaryie': + nodeName_ == 'primaryie': primaryie_ = '' for text__content_ in child_.childNodes: primaryie_ += text__content_.nodeValue self.primaryie = primaryie_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'secondaryie': + nodeName_ == 'secondaryie': secondaryie_ = '' for text__content_ in child_.childNodes: secondaryie_ += text__content_.nodeValue @@ -6194,11 +7041,13 @@ def buildChildren(self, child_, nodeName_): class docListType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, listitem=None): if listitem is None: self.listitem = [] else: self.listitem = listitem + def factory(*args_, **kwargs_): if docListType.subclass: return docListType.subclass(*args_, **kwargs_) @@ -6209,6 +7058,7 @@ def get_listitem(self): return self.listitem def set_listitem(self, listitem): self.listitem = listitem def add_listitem(self, value): self.listitem.append(value) def insert_listitem(self, index, value): self.listitem[index] = value + def export(self, outfile, level, namespace_='', name_='docListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -6220,25 +7070,31 @@ def export(self, outfile, level, namespace_='', name_='docListType', namespacede outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docListType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docListType'): for listitem_ in self.listitem: listitem_.export(outfile, level, namespace_, name_='listitem') + def hasContent_(self): if ( self.listitem is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('listitem=[\n') @@ -6252,17 +7108,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'listitem': + nodeName_ == 'listitem': obj_ = docListItemType.factory() obj_.build(child_) self.listitem.append(obj_) @@ -6272,11 +7131,13 @@ def buildChildren(self, child_, nodeName_): class docListItemType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, para=None): if para is None: self.para = [] else: self.para = para + def factory(*args_, **kwargs_): if docListItemType.subclass: return docListItemType.subclass(*args_, **kwargs_) @@ -6287,10 +7148,12 @@ def get_para(self): return self.para def set_para(self, para): self.para = para def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value + def export(self, outfile, level, namespace_='', name_='docListItemType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docListItemType') + self.exportAttributes(outfile, level, namespace_, + name_='docListItemType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -6298,25 +7161,31 @@ def export(self, outfile, level, namespace_='', name_='docListItemType', namespa outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docListItemType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docListItemType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') + def hasContent_(self): if ( self.para is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docListItemType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') @@ -6330,17 +7199,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) @@ -6350,6 +7222,7 @@ def buildChildren(self, child_, nodeName_): class docSimpleSectType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, kind=None, title=None, para=None): self.kind = kind self.title = title @@ -6357,6 +7230,7 @@ def __init__(self, kind=None, title=None, para=None): self.para = [] else: self.para = para + def factory(*args_, **kwargs_): if docSimpleSectType.subclass: return docSimpleSectType.subclass(*args_, **kwargs_) @@ -6371,10 +7245,12 @@ def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind + def export(self, outfile, level, namespace_='', name_='docSimpleSectType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docSimpleSectType') + self.exportAttributes(outfile, level, namespace_, + name_='docSimpleSectType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -6382,31 +7258,37 @@ def export(self, outfile, level, namespace_='', name_='docSimpleSectType', names outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docSimpleSectType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) + def exportChildren(self, outfile, level, namespace_='', name_='docSimpleSectType'): if self.title: self.title.export(outfile, level, namespace_, name_='title') for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') + def hasContent_(self): if ( self.title is not None or self.para is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docSimpleSectType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) + def exportLiteralChildren(self, outfile, level, name_): if self.title: showIndent(outfile, level) @@ -6426,23 +7308,26 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'title': + nodeName_ == 'title': obj_ = docTitleType.factory() obj_.build(child_) self.set_title(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) @@ -6452,8 +7337,10 @@ def buildChildren(self, child_, nodeName_): class docVarListEntryType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, term=None): self.term = term + def factory(*args_, **kwargs_): if docVarListEntryType.subclass: return docVarListEntryType.subclass(*args_, **kwargs_) @@ -6462,10 +7349,12 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def get_term(self): return self.term def set_term(self, term): self.term = term + def export(self, outfile, level, namespace_='', name_='docVarListEntryType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docVarListEntryType') + self.exportAttributes(outfile, level, namespace_, + name_='docVarListEntryType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -6473,25 +7362,31 @@ def export(self, outfile, level, namespace_='', name_='docVarListEntryType', nam outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docVarListEntryType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docVarListEntryType'): if self.term: self.term.export(outfile, level, namespace_, name_='term', ) + def hasContent_(self): if ( self.term is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docVarListEntryType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): if self.term: showIndent(outfile, level) @@ -6499,17 +7394,20 @@ def exportLiteralChildren(self, outfile, level, name_): self.term.exportLiteral(outfile, level, name_='term') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'term': + nodeName_ == 'term': obj_ = docTitleType.factory() obj_.build(child_) self.set_term(obj_) @@ -6519,8 +7417,10 @@ def buildChildren(self, child_, nodeName_): class docVariableListType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if docVariableListType.subclass: return docVariableListType.subclass(*args_, **kwargs_) @@ -6529,10 +7429,12 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docVariableListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docVariableListType') + self.exportAttributes(outfile, level, namespace_, + name_='docVariableListType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -6540,33 +7442,40 @@ def export(self, outfile, level, namespace_='', name_='docVariableListType', nam outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docVariableListType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docVariableListType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docVariableListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -6574,19 +7483,22 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docVariableListType class docRefTextType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedclass_=None, content_=None): self.refid = refid self.kindref = kindref @@ -6599,6 +7511,7 @@ def __init__(self, refid=None, kindref=None, external=None, valueOf_='', mixedcl self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docRefTextType.subclass: return docRefTextType.subclass(*args_, **kwargs_) @@ -6613,40 +7526,49 @@ def get_external(self): return self.external def set_external(self, external): self.external = external def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docRefTextType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docRefTextType') + self.exportAttributes(outfile, level, namespace_, + name_='docRefTextType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docRefTextType'): if self.refid is not None: - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) if self.kindref is not None: outfile.write(' kindref=%s' % (quote_attrib(self.kindref), )) if self.external is not None: - outfile.write(' external=%s' % (self.format_string(quote_attrib(self.external).encode(ExternalEncoding), input_name='external'), )) + outfile.write(' external=%s' % (self.format_string(quote_attrib( + self.external).encode(ExternalEncoding), input_name='external'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docRefTextType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docRefTextType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) @@ -6657,9 +7579,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.external is not None: showIndent(outfile, level) outfile.write('external = %s,\n' % (self.external,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -6667,6 +7591,7 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('refid'): self.refid = attrs.get('refid').value @@ -6674,21 +7599,23 @@ def buildAttributes(self, attrs): self.kindref = attrs.get('kindref').value if attrs.get('external'): self.external = attrs.get('external').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docRefTextType class docTableType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, rows=None, cols=None, row=None, caption=None): self.rows = rows self.cols = cols @@ -6697,6 +7624,7 @@ def __init__(self, rows=None, cols=None, row=None, caption=None): else: self.row = row self.caption = caption + def factory(*args_, **kwargs_): if docTableType.subclass: return docTableType.subclass(*args_, **kwargs_) @@ -6713,6 +7641,7 @@ def get_rows(self): return self.rows def set_rows(self, rows): self.rows = rows def get_cols(self): return self.cols def set_cols(self, cols): self.cols = cols + def export(self, outfile, level, namespace_='', name_='docTableType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -6724,29 +7653,36 @@ def export(self, outfile, level, namespace_='', name_='docTableType', namespaced outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docTableType'): if self.rows is not None: - outfile.write(' rows="%s"' % self.format_integer(self.rows, input_name='rows')) + outfile.write(' rows="%s"' % self.format_integer( + self.rows, input_name='rows')) if self.cols is not None: - outfile.write(' cols="%s"' % self.format_integer(self.cols, input_name='cols')) + outfile.write(' cols="%s"' % self.format_integer( + self.cols, input_name='cols')) + def exportChildren(self, outfile, level, namespace_='', name_='docTableType'): for row_ in self.row: row_.export(outfile, level, namespace_, name_='row') if self.caption: self.caption.export(outfile, level, namespace_, name_='caption') + def hasContent_(self): if ( self.row is not None or self.caption is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docTableType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.rows is not None: showIndent(outfile, level) @@ -6754,6 +7690,7 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.cols is not None: showIndent(outfile, level) outfile.write('cols = %s,\n' % (self.cols,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('row=[\n') @@ -6773,12 +7710,14 @@ def exportLiteralChildren(self, outfile, level, name_): self.caption.exportLiteral(outfile, level, name_='caption') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('rows'): try: @@ -6790,14 +7729,15 @@ def buildAttributes(self, attrs): self.cols = int(attrs.get('cols').value) except ValueError as exp: raise ValueError('Bad integer attribute (cols): %s' % exp) + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'row': + nodeName_ == 'row': obj_ = docRowType.factory() obj_.build(child_) self.row.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'caption': + nodeName_ == 'caption': obj_ = docCaptionType.factory() obj_.build(child_) self.set_caption(obj_) @@ -6807,11 +7747,13 @@ def buildChildren(self, child_, nodeName_): class docRowType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, entry=None): if entry is None: self.entry = [] else: self.entry = entry + def factory(*args_, **kwargs_): if docRowType.subclass: return docRowType.subclass(*args_, **kwargs_) @@ -6822,6 +7764,7 @@ def get_entry(self): return self.entry def set_entry(self, entry): self.entry = entry def add_entry(self, value): self.entry.append(value) def insert_entry(self, index, value): self.entry[index] = value + def export(self, outfile, level, namespace_='', name_='docRowType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -6833,25 +7776,31 @@ def export(self, outfile, level, namespace_='', name_='docRowType', namespacedef outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docRowType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docRowType'): for entry_ in self.entry: entry_.export(outfile, level, namespace_, name_='entry') + def hasContent_(self): if ( self.entry is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docRowType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('entry=[\n') @@ -6865,17 +7814,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'entry': + nodeName_ == 'entry': obj_ = docEntryType.factory() obj_.build(child_) self.entry.append(obj_) @@ -6885,12 +7837,14 @@ def buildChildren(self, child_, nodeName_): class docEntryType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, thead=None, para=None): self.thead = thead if para is None: self.para = [] else: self.para = para + def factory(*args_, **kwargs_): if docEntryType.subclass: return docEntryType.subclass(*args_, **kwargs_) @@ -6903,6 +7857,7 @@ def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_thead(self): return self.thead def set_thead(self, thead): self.thead = thead + def export(self, outfile, level, namespace_='', name_='docEntryType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -6914,28 +7869,34 @@ def export(self, outfile, level, namespace_='', name_='docEntryType', namespaced outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docEntryType'): if self.thead is not None: outfile.write(' thead=%s' % (quote_attrib(self.thead), )) + def exportChildren(self, outfile, level, namespace_='', name_='docEntryType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') + def hasContent_(self): if ( self.para is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docEntryType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.thead is not None: showIndent(outfile, level) outfile.write('thead = "%s",\n' % (self.thead,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') @@ -6949,18 +7910,21 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('thead'): self.thead = attrs.get('thead').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) @@ -6970,6 +7934,7 @@ def buildChildren(self, child_, nodeName_): class docCaptionType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_='', mixedclass_=None, content_=None): if mixedclass_ is None: self.mixedclass_ = MixedContainer @@ -6979,6 +7944,7 @@ def __init__(self, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docCaptionType.subclass: return docCaptionType.subclass(*args_, **kwargs_) @@ -6987,40 +7953,49 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docCaptionType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docCaptionType') + self.exportAttributes(outfile, level, namespace_, + name_='docCaptionType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docCaptionType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docCaptionType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docCaptionType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -7028,23 +8003,26 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docCaptionType class docHeadingType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, level=None, valueOf_='', mixedclass_=None, content_=None): self.level = level if mixedclass_ is None: @@ -7055,6 +8033,7 @@ def __init__(self, level=None, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docHeadingType.subclass: return docHeadingType.subclass(*args_, **kwargs_) @@ -7065,43 +8044,53 @@ def get_level(self): return self.level def set_level(self, level): self.level = level def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docHeadingType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docHeadingType') + self.exportAttributes(outfile, level, namespace_, + name_='docHeadingType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docHeadingType'): if self.level is not None: - outfile.write(' level="%s"' % self.format_integer(self.level, input_name='level')) + outfile.write(' level="%s"' % self.format_integer( + self.level, input_name='level')) + def exportChildren(self, outfile, level, namespace_='', name_='docHeadingType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docHeadingType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.level is not None: showIndent(outfile, level) outfile.write('level = %s,\n' % (self.level,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -7109,27 +8098,30 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('level'): try: self.level = int(attrs.get('level').value) except ValueError as exp: raise ValueError('Bad integer attribute (level): %s' % exp) + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docHeadingType class docImageType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, width=None, type_=None, name=None, height=None, valueOf_='', mixedclass_=None, content_=None): self.width = width self.type_ = type_ @@ -7143,6 +8135,7 @@ def __init__(self, width=None, type_=None, name=None, height=None, valueOf_='', self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docImageType.subclass: return docImageType.subclass(*args_, **kwargs_) @@ -7159,6 +8152,7 @@ def get_height(self): return self.height def set_height(self, height): self.height = height def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docImageType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -7166,35 +8160,43 @@ def export(self, outfile, level, namespace_='', name_='docImageType', namespaced outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docImageType'): if self.width is not None: - outfile.write(' width=%s' % (self.format_string(quote_attrib(self.width).encode(ExternalEncoding), input_name='width'), )) + outfile.write(' width=%s' % (self.format_string(quote_attrib( + self.width).encode(ExternalEncoding), input_name='width'), )) if self.type_ is not None: outfile.write(' type=%s' % (quote_attrib(self.type_), )) if self.name is not None: - outfile.write(' name=%s' % (self.format_string(quote_attrib(self.name).encode(ExternalEncoding), input_name='name'), )) + outfile.write(' name=%s' % (self.format_string(quote_attrib( + self.name).encode(ExternalEncoding), input_name='name'), )) if self.height is not None: - outfile.write(' height=%s' % (self.format_string(quote_attrib(self.height).encode(ExternalEncoding), input_name='height'), )) + outfile.write(' height=%s' % (self.format_string(quote_attrib( + self.height).encode(ExternalEncoding), input_name='height'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docImageType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docImageType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.width is not None: showIndent(outfile, level) @@ -7208,9 +8210,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.height is not None: showIndent(outfile, level) outfile.write('height = %s,\n' % (self.height,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -7218,6 +8222,7 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('width'): self.width = attrs.get('width').value @@ -7227,21 +8232,23 @@ def buildAttributes(self, attrs): self.name = attrs.get('name').value if attrs.get('height'): self.height = attrs.get('height').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docImageType class docDotFileType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, name=None, valueOf_='', mixedclass_=None, content_=None): self.name = name if mixedclass_ is None: @@ -7252,6 +8259,7 @@ def __init__(self, name=None, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docDotFileType.subclass: return docDotFileType.subclass(*args_, **kwargs_) @@ -7262,43 +8270,53 @@ def get_name(self): return self.name def set_name(self, name): self.name = name def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docDotFileType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docDotFileType') + self.exportAttributes(outfile, level, namespace_, + name_='docDotFileType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docDotFileType'): if self.name is not None: - outfile.write(' name=%s' % (self.format_string(quote_attrib(self.name).encode(ExternalEncoding), input_name='name'), )) + outfile.write(' name=%s' % (self.format_string(quote_attrib( + self.name).encode(ExternalEncoding), input_name='name'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docDotFileType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docDotFileType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.name is not None: showIndent(outfile, level) outfile.write('name = %s,\n' % (self.name,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -7306,24 +8324,27 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('name'): self.name = attrs.get('name').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docDotFileType class docTocItemType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.id = id if mixedclass_ is None: @@ -7334,6 +8355,7 @@ def __init__(self, id=None, valueOf_='', mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docTocItemType.subclass: return docTocItemType.subclass(*args_, **kwargs_) @@ -7344,43 +8366,53 @@ def get_id(self): return self.id def set_id(self, id): self.id = id def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docTocItemType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docTocItemType') + self.exportAttributes(outfile, level, namespace_, + name_='docTocItemType') outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docTocItemType'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docTocItemType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docTocItemType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -7388,29 +8420,33 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docTocItemType class docTocListType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, tocitem=None): if tocitem is None: self.tocitem = [] else: self.tocitem = tocitem + def factory(*args_, **kwargs_): if docTocListType.subclass: return docTocListType.subclass(*args_, **kwargs_) @@ -7421,10 +8457,12 @@ def get_tocitem(self): return self.tocitem def set_tocitem(self, tocitem): self.tocitem = tocitem def add_tocitem(self, value): self.tocitem.append(value) def insert_tocitem(self, index, value): self.tocitem[index] = value + def export(self, outfile, level, namespace_='', name_='docTocListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docTocListType') + self.exportAttributes(outfile, level, namespace_, + name_='docTocListType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -7432,25 +8470,31 @@ def export(self, outfile, level, namespace_='', name_='docTocListType', namespac outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docTocListType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docTocListType'): for tocitem_ in self.tocitem: tocitem_.export(outfile, level, namespace_, name_='tocitem') + def hasContent_(self): if ( self.tocitem is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docTocListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('tocitem=[\n') @@ -7464,17 +8508,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'tocitem': + nodeName_ == 'tocitem': obj_ = docTocItemType.factory() obj_.build(child_) self.tocitem.append(obj_) @@ -7484,12 +8531,14 @@ def buildChildren(self, child_, nodeName_): class docLanguageType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, langid=None, para=None): self.langid = langid if para is None: self.para = [] else: self.para = para + def factory(*args_, **kwargs_): if docLanguageType.subclass: return docLanguageType.subclass(*args_, **kwargs_) @@ -7502,10 +8551,12 @@ def add_para(self, value): self.para.append(value) def insert_para(self, index, value): self.para[index] = value def get_langid(self): return self.langid def set_langid(self, langid): self.langid = langid + def export(self, outfile, level, namespace_='', name_='docLanguageType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docLanguageType') + self.exportAttributes(outfile, level, namespace_, + name_='docLanguageType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -7513,28 +8564,35 @@ def export(self, outfile, level, namespace_='', name_='docLanguageType', namespa outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docLanguageType'): if self.langid is not None: - outfile.write(' langid=%s' % (self.format_string(quote_attrib(self.langid).encode(ExternalEncoding), input_name='langid'), )) + outfile.write(' langid=%s' % (self.format_string(quote_attrib( + self.langid).encode(ExternalEncoding), input_name='langid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docLanguageType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') + def hasContent_(self): if ( self.para is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docLanguageType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.langid is not None: showIndent(outfile, level) outfile.write('langid = %s,\n' % (self.langid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') @@ -7548,18 +8606,21 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('langid'): self.langid = attrs.get('langid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) @@ -7569,12 +8630,14 @@ def buildChildren(self, child_, nodeName_): class docParamListType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, kind=None, parameteritem=None): self.kind = kind if parameteritem is None: self.parameteritem = [] else: self.parameteritem = parameteritem + def factory(*args_, **kwargs_): if docParamListType.subclass: return docParamListType.subclass(*args_, **kwargs_) @@ -7582,15 +8645,21 @@ def factory(*args_, **kwargs_): return docParamListType(*args_, **kwargs_) factory = staticmethod(factory) def get_parameteritem(self): return self.parameteritem - def set_parameteritem(self, parameteritem): self.parameteritem = parameteritem + def set_parameteritem( + self, parameteritem): self.parameteritem = parameteritem + def add_parameteritem(self, value): self.parameteritem.append(value) - def insert_parameteritem(self, index, value): self.parameteritem[index] = value + def insert_parameteritem( + self, index, value): self.parameteritem[index] = value + def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind + def export(self, outfile, level, namespace_='', name_='docParamListType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docParamListType') + self.exportAttributes(outfile, level, namespace_, + name_='docParamListType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -7598,28 +8667,35 @@ def export(self, outfile, level, namespace_='', name_='docParamListType', namesp outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docParamListType'): if self.kind is not None: outfile.write(' kind=%s' % (quote_attrib(self.kind), )) + def exportChildren(self, outfile, level, namespace_='', name_='docParamListType'): for parameteritem_ in self.parameteritem: - parameteritem_.export(outfile, level, namespace_, name_='parameteritem') + parameteritem_.export( + outfile, level, namespace_, name_='parameteritem') + def hasContent_(self): if ( self.parameteritem is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docParamListType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) outfile.write('kind = "%s",\n' % (self.kind,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('parameteritem=[\n') @@ -7633,18 +8709,21 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'parameteritem': + nodeName_ == 'parameteritem': obj_ = docParamListItem.factory() obj_.build(child_) self.parameteritem.append(obj_) @@ -7654,12 +8733,14 @@ def buildChildren(self, child_, nodeName_): class docParamListItem(GeneratedsSuper): subclass = None superclass = None + def __init__(self, parameternamelist=None, parameterdescription=None): if parameternamelist is None: self.parameternamelist = [] else: self.parameternamelist = parameternamelist self.parameterdescription = parameterdescription + def factory(*args_, **kwargs_): if docParamListItem.subclass: return docParamListItem.subclass(*args_, **kwargs_) @@ -7667,15 +8748,25 @@ def factory(*args_, **kwargs_): return docParamListItem(*args_, **kwargs_) factory = staticmethod(factory) def get_parameternamelist(self): return self.parameternamelist - def set_parameternamelist(self, parameternamelist): self.parameternamelist = parameternamelist - def add_parameternamelist(self, value): self.parameternamelist.append(value) - def insert_parameternamelist(self, index, value): self.parameternamelist[index] = value + + def set_parameternamelist( + self, parameternamelist): self.parameternamelist = parameternamelist + + def add_parameternamelist( + self, value): self.parameternamelist.append(value) + def insert_parameternamelist( + self, index, value): self.parameternamelist[index] = value + def get_parameterdescription(self): return self.parameterdescription - def set_parameterdescription(self, parameterdescription): self.parameterdescription = parameterdescription + + def set_parameterdescription( + self, parameterdescription): self.parameterdescription = parameterdescription + def export(self, outfile, level, namespace_='', name_='docParamListItem', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docParamListItem') + self.exportAttributes(outfile, level, namespace_, + name_='docParamListItem') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -7683,28 +8774,36 @@ def export(self, outfile, level, namespace_='', name_='docParamListItem', namesp outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docParamListItem'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docParamListItem'): for parameternamelist_ in self.parameternamelist: - parameternamelist_.export(outfile, level, namespace_, name_='parameternamelist') + parameternamelist_.export( + outfile, level, namespace_, name_='parameternamelist') if self.parameterdescription: - self.parameterdescription.export(outfile, level, namespace_, name_='parameterdescription', ) + self.parameterdescription.export( + outfile, level, namespace_, name_='parameterdescription', ) + def hasContent_(self): if ( self.parameternamelist is not None or self.parameterdescription is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docParamListItem'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('parameternamelist=[\n') @@ -7712,7 +8811,8 @@ def exportLiteralChildren(self, outfile, level, name_): for parameternamelist in self.parameternamelist: showIndent(outfile, level) outfile.write('model_.parameternamelist(\n') - parameternamelist.exportLiteral(outfile, level, name_='parameternamelist') + parameternamelist.exportLiteral( + outfile, level, name_='parameternamelist') showIndent(outfile, level) outfile.write('),\n') level -= 1 @@ -7721,25 +8821,29 @@ def exportLiteralChildren(self, outfile, level, name_): if self.parameterdescription: showIndent(outfile, level) outfile.write('parameterdescription=model_.descriptionType(\n') - self.parameterdescription.exportLiteral(outfile, level, name_='parameterdescription') + self.parameterdescription.exportLiteral( + outfile, level, name_='parameterdescription') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'parameternamelist': + nodeName_ == 'parameternamelist': obj_ = docParamNameList.factory() obj_.build(child_) self.parameternamelist.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'parameterdescription': + nodeName_ == 'parameterdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_parameterdescription(obj_) @@ -7749,11 +8853,13 @@ def buildChildren(self, child_, nodeName_): class docParamNameList(GeneratedsSuper): subclass = None superclass = None + def __init__(self, parametername=None): if parametername is None: self.parametername = [] else: self.parametername = parametername + def factory(*args_, **kwargs_): if docParamNameList.subclass: return docParamNameList.subclass(*args_, **kwargs_) @@ -7761,13 +8867,19 @@ def factory(*args_, **kwargs_): return docParamNameList(*args_, **kwargs_) factory = staticmethod(factory) def get_parametername(self): return self.parametername - def set_parametername(self, parametername): self.parametername = parametername + def set_parametername( + self, parametername): self.parametername = parametername + def add_parametername(self, value): self.parametername.append(value) - def insert_parametername(self, index, value): self.parametername[index] = value + + def insert_parametername( + self, index, value): self.parametername[index] = value + def export(self, outfile, level, namespace_='', name_='docParamNameList', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docParamNameList') + self.exportAttributes(outfile, level, namespace_, + name_='docParamNameList') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -7775,25 +8887,32 @@ def export(self, outfile, level, namespace_='', name_='docParamNameList', namesp outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docParamNameList'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docParamNameList'): for parametername_ in self.parametername: - parametername_.export(outfile, level, namespace_, name_='parametername') + parametername_.export( + outfile, level, namespace_, name_='parametername') + def hasContent_(self): if ( self.parametername is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docParamNameList'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('parametername=[\n') @@ -7807,17 +8926,20 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'parametername': + nodeName_ == 'parametername': obj_ = docParamName.factory() obj_.build(child_) self.parametername.append(obj_) @@ -7827,6 +8949,7 @@ def buildChildren(self, child_, nodeName_): class docParamName(GeneratedsSuper): subclass = None superclass = None + def __init__(self, direction=None, ref=None, mixedclass_=None, content_=None): self.direction = direction if mixedclass_ is None: @@ -7837,6 +8960,7 @@ def __init__(self, direction=None, ref=None, mixedclass_=None, content_=None): self.content_ = [] else: self.content_ = content_ + def factory(*args_, **kwargs_): if docParamName.subclass: return docParamName.subclass(*args_, **kwargs_) @@ -7847,6 +8971,7 @@ def get_ref(self): return self.ref def set_ref(self, ref): self.ref = ref def get_direction(self): return self.direction def set_direction(self, direction): self.direction = direction + def export(self, outfile, level, namespace_='', name_='docParamName', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -7854,28 +8979,34 @@ def export(self, outfile, level, namespace_='', name_='docParamName', namespaced outfile.write('>') self.exportChildren(outfile, level + 1, namespace_, name_) outfile.write('\n' % (namespace_, name_)) + def exportAttributes(self, outfile, level, namespace_='', name_='docParamName'): if self.direction is not None: outfile.write(' direction=%s' % (quote_attrib(self.direction), )) + def exportChildren(self, outfile, level, namespace_='', name_='docParamName'): for item_ in self.content_: item_.export(outfile, level, item_.name, namespace_) + def hasContent_(self): if ( self.ref is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docParamName'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.direction is not None: showIndent(outfile, level) outfile.write('direction = "%s",\n' % (self.direction,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('content_ = [\n') @@ -7883,26 +9014,29 @@ def exportLiteralChildren(self, outfile, level, name_): item_.exportLiteral(outfile, level, name_) showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('direction'): self.direction = attrs.get('direction').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'ref': + nodeName_ == 'ref': childobj_ = docRefTextType.factory() childobj_.build(child_) obj_ = self.mixedclass_(MixedContainer.CategoryComplex, - MixedContainer.TypeNone, 'ref', childobj_) + MixedContainer.TypeNone, 'ref', childobj_) self.content_.append(obj_) elif child_.nodeType == Node.TEXT_NODE: obj_ = self.mixedclass_(MixedContainer.CategoryText, - MixedContainer.TypeNone, '', child_.nodeValue) + MixedContainer.TypeNone, '', child_.nodeValue) self.content_.append(obj_) # end class docParamName @@ -7910,6 +9044,7 @@ def buildChildren(self, child_, nodeName_): class docXRefSectType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, id=None, xreftitle=None, xrefdescription=None): self.id = id if xreftitle is None: @@ -7917,6 +9052,7 @@ def __init__(self, id=None, xreftitle=None, xrefdescription=None): else: self.xreftitle = xreftitle self.xrefdescription = xrefdescription + def factory(*args_, **kwargs_): if docXRefSectType.subclass: return docXRefSectType.subclass(*args_, **kwargs_) @@ -7928,13 +9064,17 @@ def set_xreftitle(self, xreftitle): self.xreftitle = xreftitle def add_xreftitle(self, value): self.xreftitle.append(value) def insert_xreftitle(self, index, value): self.xreftitle[index] = value def get_xrefdescription(self): return self.xrefdescription - def set_xrefdescription(self, xrefdescription): self.xrefdescription = xrefdescription + def set_xrefdescription( + self, xrefdescription): self.xrefdescription = xrefdescription + def get_id(self): return self.id def set_id(self, id): self.id = id + def export(self, outfile, level, namespace_='', name_='docXRefSectType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) - self.exportAttributes(outfile, level, namespace_, name_='docXRefSectType') + self.exportAttributes(outfile, level, namespace_, + name_='docXRefSectType') if self.hasContent_(): outfile.write('>\n') self.exportChildren(outfile, level + 1, namespace_, name_) @@ -7942,66 +9082,80 @@ def export(self, outfile, level, namespace_='', name_='docXRefSectType', namespa outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docXRefSectType'): if self.id is not None: - outfile.write(' id=%s' % (self.format_string(quote_attrib(self.id).encode(ExternalEncoding), input_name='id'), )) + outfile.write(' id=%s' % (self.format_string(quote_attrib( + self.id).encode(ExternalEncoding), input_name='id'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docXRefSectType'): for xreftitle_ in self.xreftitle: showIndent(outfile, level) - outfile.write('<%sxreftitle>%s\n' % (namespace_, self.format_string(quote_xml(xreftitle_).encode(ExternalEncoding), input_name='xreftitle'), namespace_)) + outfile.write('<%sxreftitle>%s\n' % (namespace_, self.format_string( + quote_xml(xreftitle_).encode(ExternalEncoding), input_name='xreftitle'), namespace_)) if self.xrefdescription: - self.xrefdescription.export(outfile, level, namespace_, name_='xrefdescription', ) + self.xrefdescription.export( + outfile, level, namespace_, name_='xrefdescription', ) + def hasContent_(self): if ( self.xreftitle is not None or self.xrefdescription is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docXRefSectType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.id is not None: showIndent(outfile, level) outfile.write('id = %s,\n' % (self.id,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('xreftitle=[\n') level += 1 for xreftitle in self.xreftitle: showIndent(outfile, level) - outfile.write('%s,\n' % quote_python(xreftitle).encode(ExternalEncoding)) + outfile.write('%s,\n' % quote_python( + xreftitle).encode(ExternalEncoding)) level -= 1 showIndent(outfile, level) outfile.write('],\n') if self.xrefdescription: showIndent(outfile, level) outfile.write('xrefdescription=model_.descriptionType(\n') - self.xrefdescription.exportLiteral(outfile, level, name_='xrefdescription') + self.xrefdescription.exportLiteral( + outfile, level, name_='xrefdescription') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('id'): self.id = attrs.get('id').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'xreftitle': + nodeName_ == 'xreftitle': xreftitle_ = '' for text__content_ in child_.childNodes: xreftitle_ += text__content_.nodeValue self.xreftitle.append(xreftitle_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'xrefdescription': + nodeName_ == 'xrefdescription': obj_ = descriptionType.factory() obj_.build(child_) self.set_xrefdescription(obj_) @@ -8011,6 +9165,7 @@ def buildChildren(self, child_, nodeName_): class docCopyType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, link=None, para=None, sect1=None, internal=None): self.link = link if para is None: @@ -8022,6 +9177,7 @@ def __init__(self, link=None, para=None, sect1=None, internal=None): else: self.sect1 = sect1 self.internal = internal + def factory(*args_, **kwargs_): if docCopyType.subclass: return docCopyType.subclass(*args_, **kwargs_) @@ -8040,6 +9196,7 @@ def get_internal(self): return self.internal def set_internal(self, internal): self.internal = internal def get_link(self): return self.link def set_link(self, link): self.link = link + def export(self, outfile, level, namespace_='', name_='docCopyType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -8051,9 +9208,12 @@ def export(self, outfile, level, namespace_='', name_='docCopyType', namespacede outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docCopyType'): if self.link is not None: - outfile.write(' link=%s' % (self.format_string(quote_attrib(self.link).encode(ExternalEncoding), input_name='link'), )) + outfile.write(' link=%s' % (self.format_string(quote_attrib( + self.link).encode(ExternalEncoding), input_name='link'), )) + def exportChildren(self, outfile, level, namespace_='', name_='docCopyType'): for para_ in self.para: para_.export(outfile, level, namespace_, name_='para') @@ -8061,24 +9221,28 @@ def exportChildren(self, outfile, level, namespace_='', name_='docCopyType'): sect1_.export(outfile, level, namespace_, name_='sect1') if self.internal: self.internal.export(outfile, level, namespace_, name_='internal') + def hasContent_(self): if ( self.para is not None or self.sect1 is not None or self.internal is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docCopyType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.link is not None: showIndent(outfile, level) outfile.write('link = %s,\n' % (self.link,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('para=[\n') @@ -8110,28 +9274,31 @@ def exportLiteralChildren(self, outfile, level, name_): self.internal.exportLiteral(outfile, level, name_='internal') showIndent(outfile, level) outfile.write('),\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('link'): self.link = attrs.get('link').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'para': + nodeName_ == 'para': obj_ = docParaType.factory() obj_.build(child_) self.para.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'sect1': + nodeName_ == 'sect1': obj_ = docSect1Type.factory() obj_.build(child_) self.sect1.append(obj_) elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'internal': + nodeName_ == 'internal': obj_ = docInternalType.factory() obj_.build(child_) self.set_internal(obj_) @@ -8141,9 +9308,11 @@ def buildChildren(self, child_, nodeName_): class docCharType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, char=None, valueOf_=''): self.char = char self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if docCharType.subclass: return docCharType.subclass(*args_, **kwargs_) @@ -8154,6 +9323,7 @@ def get_char(self): return self.char def set_char(self, char): self.char = char def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docCharType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -8165,36 +9335,43 @@ def export(self, outfile, level, namespace_='', name_='docCharType', namespacede outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docCharType'): if self.char is not None: outfile.write(' char=%s' % (quote_attrib(self.char), )) + def exportChildren(self, outfile, level, namespace_='', name_='docCharType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docCharType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.char is not None: showIndent(outfile, level) outfile.write('char = "%s",\n' % (self.char,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -8202,22 +9379,26 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('char'): self.char = attrs.get('char').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docCharType class docEmptyType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, valueOf_=''): self.valueOf_ = valueOf_ + def factory(*args_, **kwargs_): if docEmptyType.subclass: return docEmptyType.subclass(*args_, **kwargs_) @@ -8226,6 +9407,7 @@ def factory(*args_, **kwargs_): factory = staticmethod(factory) def getValueOf_(self): return self.valueOf_ def setValueOf_(self, valueOf_): self.valueOf_ = valueOf_ + def export(self, outfile, level, namespace_='', name_='docEmptyType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -8237,33 +9419,40 @@ def export(self, outfile, level, namespace_='', name_='docEmptyType', namespaced outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='docEmptyType'): pass + def exportChildren(self, outfile, level, namespace_='', name_='docEmptyType'): - if self.valueOf_.find('![CDATA')>-1: - value=quote_xml('%s' % self.valueOf_) - value=value.replace('![CDATA','') + if self.valueOf_.find('![CDATA') > -1: + value = quote_xml('%s' % self.valueOf_) + value = value.replace('![CDATA', '') outfile.write(value) else: outfile.write(quote_xml('%s' % self.valueOf_)) + def hasContent_(self): if ( self.valueOf_ is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='docEmptyType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): pass + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('valueOf_ = "%s",\n' % (self.valueOf_,)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) @@ -8271,13 +9460,15 @@ def build(self, node_): for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): pass + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.TEXT_NODE: self.valueOf_ += child_.nodeValue elif child_.nodeType == Node.CDATA_SECTION_NODE: - self.valueOf_ += '![CDATA['+child_.nodeValue+']]' + self.valueOf_ += '![CDATA[' + child_.nodeValue + ']]' # end class docEmptyType @@ -8287,6 +9478,7 @@ def buildChildren(self, child_, nodeName_): -s Use the SAX parser, not the minidom parser. """ + def usage(): print(USAGE_TEXT) sys.exit(1) @@ -8301,7 +9493,7 @@ def parse(inFileName): doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygen", - namespacedef_='') + namespacedef_='') return rootObj @@ -8314,7 +9506,7 @@ def parseString(inString): doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygen", - namespacedef_='') + namespacedef_='') return rootObj @@ -8343,4 +9535,4 @@ def main(): if __name__ == '__main__': main() #import pdb - #pdb.run('main()') + # pdb.run('main()') diff --git a/docs/doxygen/doxyxml/generated/index.py b/docs/doxygen/doxyxml/generated/index.py index 0c63512..7ffbdf1 100644 --- a/docs/doxygen/doxyxml/generated/index.py +++ b/docs/doxygen/doxyxml/generated/index.py @@ -3,8 +3,6 @@ """ Generated Mon Feb 9 19:08:05 2009 by generateDS.py. """ -from __future__ import absolute_import -from __future__ import unicode_literals from xml.dom import minidom @@ -14,6 +12,7 @@ from . import indexsuper as supermod + class DoxygenTypeSub(supermod.DoxygenType): def __init__(self, version=None, compound=None): supermod.DoxygenType.__init__(self, version, compound) @@ -34,6 +33,7 @@ def find_compounds_and_members(self, details): return results + supermod.DoxygenType.subclass = DoxygenTypeSub # end class DoxygenTypeSub @@ -55,6 +55,7 @@ def find_members(self, details): return results + supermod.CompoundType.subclass = CompoundTypeSub # end class CompoundTypeSub @@ -64,6 +65,7 @@ class MemberTypeSub(supermod.MemberType): def __init__(self, kind=None, refid=None, name=''): supermod.MemberType.__init__(self, kind, refid, name) + supermod.MemberType.subclass = MemberTypeSub # end class MemberTypeSub @@ -76,4 +78,3 @@ def parse(inFilename): rootObj.build(rootNode) return rootObj - diff --git a/docs/doxygen/doxyxml/generated/indexsuper.py b/docs/doxygen/doxyxml/generated/indexsuper.py index 11312db..b30e062 100644 --- a/docs/doxygen/doxyxml/generated/indexsuper.py +++ b/docs/doxygen/doxyxml/generated/indexsuper.py @@ -4,16 +4,12 @@ # Generated Thu Jun 11 18:43:54 2009 by generateDS.py. # -from __future__ import print_function -from __future__ import unicode_literals import sys from xml.dom import minidom from xml.dom import Node -import six - # # User methods # @@ -28,12 +24,16 @@ class GeneratedsSuper(object): def format_string(self, input_data, input_name=''): return input_data + def format_integer(self, input_data, input_name=''): return '%d' % input_data + def format_float(self, input_data, input_name=''): return '%f' % input_data + def format_double(self, input_data, input_name=''): return '%e' % input_data + def format_boolean(self, input_data, input_name=''): return '%s' % input_data @@ -45,9 +45,9 @@ def format_boolean(self, input_data, input_name=''): ## from IPython.Shell import IPShellEmbed ## args = '' -## ipshell = IPShellEmbed(args, +# ipshell = IPShellEmbed(args, ## banner = 'Dropping into IPython', -## exit_msg = 'Leaving Interpreter, back to program.') +# exit_msg = 'Leaving Interpreter, back to program.') # Then use the following line where and when you want to drop into the # IPython shell: @@ -63,20 +63,23 @@ def format_boolean(self, input_data, input_name=''): # Support/utility functions. # + def showIndent(outfile, level): for idx in range(level): outfile.write(' ') + def quote_xml(inStr): - s1 = (isinstance(inStr, six.string_types) and inStr or + s1 = (isinstance(inStr, str) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') s1 = s1.replace('>', '>') return s1 + def quote_attrib(inStr): - s1 = (isinstance(inStr, six.string_types) and inStr or + s1 = (isinstance(inStr, str) and inStr or '%s' % inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') @@ -90,6 +93,7 @@ def quote_attrib(inStr): s1 = '"%s"' % s1 return s1 + def quote_python(inStr): s1 = inStr if s1.find("'") == -1: @@ -121,26 +125,33 @@ class MixedContainer(object): TypeDecimal = 5 TypeDouble = 6 TypeBoolean = 7 + def __init__(self, category, content_type, name, value): self.category = category self.content_type = content_type self.name = name self.value = value + def getCategory(self): return self.category + def getContenttype(self, content_type): return self.content_type + def getValue(self): return self.value + def getName(self): return self.name + def export(self, outfile, level, name, namespace): if self.category == MixedContainer.CategoryText: outfile.write(self.value) elif self.category == MixedContainer.CategorySimple: self.exportSimple(outfile, level, name) else: # category == MixedContainer.CategoryComplex - self.value.export(outfile, level, namespace,name) + self.value.export(outfile, level, namespace, name) + def exportSimple(self, outfile, level, name): if self.content_type == MixedContainer.TypeString: outfile.write('<%s>%s' % (self.name, self.value, self.name)) @@ -152,19 +163,20 @@ def exportSimple(self, outfile, level, name): outfile.write('<%s>%f' % (self.name, self.value, self.name)) elif self.content_type == MixedContainer.TypeDouble: outfile.write('<%s>%g' % (self.name, self.value, self.name)) + def exportLiteral(self, outfile, level, name): if self.category == MixedContainer.CategoryText: showIndent(outfile, level) - outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ - (self.category, self.content_type, self.name, self.value)) + outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % + (self.category, self.content_type, self.name, self.value)) elif self.category == MixedContainer.CategorySimple: showIndent(outfile, level) - outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % \ - (self.category, self.content_type, self.name, self.value)) + outfile.write('MixedContainer(%d, %d, "%s", "%s"),\n' % + (self.category, self.content_type, self.name, self.value)) else: # category == MixedContainer.CategoryComplex showIndent(outfile, level) - outfile.write('MixedContainer(%d, %d, "%s",\n' % \ - (self.category, self.content_type, self.name,)) + outfile.write('MixedContainer(%d, %d, "%s",\n' % + (self.category, self.content_type, self.name,)) self.value.exportLiteral(outfile, level + 1) showIndent(outfile, level) outfile.write(')\n') @@ -175,6 +187,7 @@ def __init__(self, name='', data_type='', container=0): self.name = name self.data_type = data_type self.container = container + def set_name(self, name): self.name = name def get_name(self): return self.name def set_data_type(self, data_type): self.data_type = data_type @@ -190,12 +203,14 @@ def get_container(self): return self.container class DoxygenType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, version=None, compound=None): self.version = version if compound is None: self.compound = [] else: self.compound = compound + def factory(*args_, **kwargs_): if DoxygenType.subclass: return DoxygenType.subclass(*args_, **kwargs_) @@ -208,6 +223,7 @@ def add_compound(self, value): self.compound.append(value) def insert_compound(self, index, value): self.compound[index] = value def get_version(self): return self.version def set_version(self, version): self.version = version + def export(self, outfile, level, namespace_='', name_='DoxygenType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -219,27 +235,34 @@ def export(self, outfile, level, namespace_='', name_='DoxygenType', namespacede outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='DoxygenType'): - outfile.write(' version=%s' % (self.format_string(quote_attrib(self.version).encode(ExternalEncoding), input_name='version'), )) + outfile.write(' version=%s' % (self.format_string(quote_attrib( + self.version).encode(ExternalEncoding), input_name='version'), )) + def exportChildren(self, outfile, level, namespace_='', name_='DoxygenType'): for compound_ in self.compound: compound_.export(outfile, level, namespace_, name_='compound') + def hasContent_(self): if ( self.compound is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='DoxygenType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.version is not None: showIndent(outfile, level) outfile.write('version = %s,\n' % (self.version,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) outfile.write('compound=[\n') @@ -253,18 +276,21 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('version'): self.version = attrs.get('version').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'compound': + nodeName_ == 'compound': obj_ = CompoundType.factory() obj_.build(child_) self.compound.append(obj_) @@ -274,6 +300,7 @@ def buildChildren(self, child_, nodeName_): class CompoundType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, kind=None, refid=None, name=None, member=None): self.kind = kind self.refid = refid @@ -282,6 +309,7 @@ def __init__(self, kind=None, refid=None, name=None, member=None): self.member = [] else: self.member = member + def factory(*args_, **kwargs_): if CompoundType.subclass: return CompoundType.subclass(*args_, **kwargs_) @@ -298,6 +326,7 @@ def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid + def export(self, outfile, level, namespace_='', name_='CompoundType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -309,28 +338,35 @@ def export(self, outfile, level, namespace_='', name_='CompoundType', namespaced outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='CompoundType'): outfile.write(' kind=%s' % (quote_attrib(self.kind), )) - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='CompoundType'): if self.name is not None: showIndent(outfile, level) - outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) + outfile.write('<%sname>%s\n' % (namespace_, self.format_string( + quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) for member_ in self.member: member_.export(outfile, level, namespace_, name_='member') + def hasContent_(self): if ( self.name is not None or self.member is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='CompoundType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) @@ -338,9 +374,11 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) - outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) + outfile.write('name=%s,\n' % quote_python( + self.name).encode(ExternalEncoding)) showIndent(outfile, level) outfile.write('member=[\n') level += 1 @@ -353,26 +391,29 @@ def exportLiteralChildren(self, outfile, level, name_): level -= 1 showIndent(outfile, level) outfile.write('],\n') + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'name': + nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue self.name = name_ elif child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'member': + nodeName_ == 'member': obj_ = MemberType.factory() obj_.build(child_) self.member.append(obj_) @@ -382,10 +423,12 @@ def buildChildren(self, child_, nodeName_): class MemberType(GeneratedsSuper): subclass = None superclass = None + def __init__(self, kind=None, refid=None, name=None): self.kind = kind self.refid = refid self.name = name + def factory(*args_, **kwargs_): if MemberType.subclass: return MemberType.subclass(*args_, **kwargs_) @@ -398,6 +441,7 @@ def get_kind(self): return self.kind def set_kind(self, kind): self.kind = kind def get_refid(self): return self.refid def set_refid(self, refid): self.refid = refid + def export(self, outfile, level, namespace_='', name_='MemberType', namespacedef_=''): showIndent(outfile, level) outfile.write('<%s%s %s' % (namespace_, name_, namespacedef_, )) @@ -409,25 +453,32 @@ def export(self, outfile, level, namespace_='', name_='MemberType', namespacedef outfile.write('\n' % (namespace_, name_)) else: outfile.write(' />\n') + def exportAttributes(self, outfile, level, namespace_='', name_='MemberType'): outfile.write(' kind=%s' % (quote_attrib(self.kind), )) - outfile.write(' refid=%s' % (self.format_string(quote_attrib(self.refid).encode(ExternalEncoding), input_name='refid'), )) + outfile.write(' refid=%s' % (self.format_string(quote_attrib( + self.refid).encode(ExternalEncoding), input_name='refid'), )) + def exportChildren(self, outfile, level, namespace_='', name_='MemberType'): if self.name is not None: showIndent(outfile, level) - outfile.write('<%sname>%s\n' % (namespace_, self.format_string(quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) + outfile.write('<%sname>%s\n' % (namespace_, self.format_string( + quote_xml(self.name).encode(ExternalEncoding), input_name='name'), namespace_)) + def hasContent_(self): if ( self.name is not None - ): + ): return True else: return False + def exportLiteral(self, outfile, level, name_='MemberType'): level += 1 self.exportLiteralAttributes(outfile, level, name_) if self.hasContent_(): self.exportLiteralChildren(outfile, level, name_) + def exportLiteralAttributes(self, outfile, level, name_): if self.kind is not None: showIndent(outfile, level) @@ -435,23 +486,28 @@ def exportLiteralAttributes(self, outfile, level, name_): if self.refid is not None: showIndent(outfile, level) outfile.write('refid = %s,\n' % (self.refid,)) + def exportLiteralChildren(self, outfile, level, name_): showIndent(outfile, level) - outfile.write('name=%s,\n' % quote_python(self.name).encode(ExternalEncoding)) + outfile.write('name=%s,\n' % quote_python( + self.name).encode(ExternalEncoding)) + def build(self, node_): attrs = node_.attributes self.buildAttributes(attrs) for child_ in node_.childNodes: nodeName_ = child_.nodeName.split(':')[-1] self.buildChildren(child_, nodeName_) + def buildAttributes(self, attrs): if attrs.get('kind'): self.kind = attrs.get('kind').value if attrs.get('refid'): self.refid = attrs.get('refid').value + def buildChildren(self, child_, nodeName_): if child_.nodeType == Node.ELEMENT_NODE and \ - nodeName_ == 'name': + nodeName_ == 'name': name_ = '' for text__content_ in child_.childNodes: name_ += text__content_.nodeValue @@ -465,6 +521,7 @@ def buildChildren(self, child_, nodeName_): -s Use the SAX parser, not the minidom parser. """ + def usage(): print(USAGE_TEXT) sys.exit(1) @@ -479,7 +536,7 @@ def parse(inFileName): doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygenindex", - namespacedef_='') + namespacedef_='') return rootObj @@ -492,7 +549,7 @@ def parseString(inString): doc = None sys.stdout.write('\n') rootObj.export(sys.stdout, 0, name_="doxygenindex", - namespacedef_='') + namespacedef_='') return rootObj @@ -518,9 +575,7 @@ def main(): usage() - - if __name__ == '__main__': main() #import pdb - #pdb.run('main()') + # pdb.run('main()') diff --git a/docs/doxygen/doxyxml/text.py b/docs/doxygen/doxyxml/text.py index c0d8b12..e129eed 100644 --- a/docs/doxygen/doxyxml/text.py +++ b/docs/doxygen/doxyxml/text.py @@ -4,25 +4,13 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. # """ Utilities for extracting text from generated classes. """ -from __future__ import unicode_literals + def is_string(txt): if isinstance(txt, str): @@ -34,11 +22,13 @@ def is_string(txt): pass return False + def description(obj): if obj is None: return None return description_bit(obj).strip() + def description_bit(obj): if hasattr(obj, 'content'): contents = [description_bit(item) for item in obj.content] @@ -51,7 +41,8 @@ def description_bit(obj): elif is_string(obj): return obj else: - raise Exception('Expecting a string or something with content, content_ or value attribute') + raise Exception( + 'Expecting a string or something with content, content_ or value attribute') # If this bit is a paragraph then add one some line breaks. if hasattr(obj, 'name') and obj.name == 'para': result += "\n\n" diff --git a/docs/doxygen/other/doxypy.py b/docs/doxygen/other/doxypy.py new file mode 100644 index 0000000..28b1664 --- /dev/null +++ b/docs/doxygen/other/doxypy.py @@ -0,0 +1,446 @@ +#!/usr/bin/env python + + +__applicationName__ = "doxypy" +__blurb__ = """ +doxypy is an input filter for Doxygen. It preprocesses python +files so that docstrings of classes and functions are reformatted +into Doxygen-conform documentation blocks. +""" + +__doc__ = __blurb__ + \ + """ +In order to make Doxygen preprocess files through doxypy, simply +add the following lines to your Doxyfile: + FILTER_SOURCE_FILES = YES + INPUT_FILTER = "python /path/to/doxypy.py" +""" + +__version__ = "0.4.2" +__date__ = "5th December 2008" +__website__ = "http://code.foosel.org/doxypy" + +__author__ = ( + "Philippe 'demod' Neumann (doxypy at demod dot org)", + "Gina 'foosel' Haeussge (gina at foosel dot net)" +) + +__licenseName__ = "GPL v2" +__license__ = """This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +""" + +import sys +import re + +from argparse import ArgumentParser + + +class FSM(object): + """Implements a finite state machine. + + Transitions are given as 4-tuples, consisting of an origin state, a target + state, a condition for the transition (given as a reference to a function + which gets called with a given piece of input) and a pointer to a function + to be called upon the execution of the given transition. + """ + + """ + @var transitions holds the transitions + @var current_state holds the current state + @var current_input holds the current input + @var current_transition hold the currently active transition + """ + + def __init__(self, start_state=None, transitions=[]): + self.transitions = transitions + self.current_state = start_state + self.current_input = None + self.current_transition = None + + def setStartState(self, state): + self.current_state = state + + def addTransition(self, from_state, to_state, condition, callback): + self.transitions.append([from_state, to_state, condition, callback]) + + def makeTransition(self, input): + """ Makes a transition based on the given input. + + @param input input to parse by the FSM + """ + for transition in self.transitions: + [from_state, to_state, condition, callback] = transition + if from_state == self.current_state: + match = condition(input) + if match: + self.current_state = to_state + self.current_input = input + self.current_transition = transition + if args.debug: + print("# FSM: executing (%s -> %s) for line '%s'" % + (from_state, to_state, input), file=sys.stderr) + callback(match) + return + + +class Doxypy(object): + def __init__(self): + string_prefixes = "[uU]?[rR]?" + + self.start_single_comment_re = re.compile( + r"^\s*%s(''')" % string_prefixes) + self.end_single_comment_re = re.compile(r"(''')\s*$") + + self.start_double_comment_re = re.compile( + r'^\s*%s(""")' % string_prefixes) + self.end_double_comment_re = re.compile(r'(""")\s*$') + + self.single_comment_re = re.compile( + r"^\s*%s(''').*(''')\s*$" % string_prefixes) + self.double_comment_re = re.compile( + r'^\s*%s(""").*(""")\s*$' % string_prefixes) + + self.defclass_re = re.compile(r"^(\s*)(def .+:|class .+:)") + self.empty_re = re.compile(r"^\s*$") + self.hashline_re = re.compile(r"^\s*#.*$") + self.importline_re = re.compile(r"^\s*(import |from .+ import)") + + self.multiline_defclass_start_re = re.compile( + r"^(\s*)(def|class)(\s.*)?$") + self.multiline_defclass_end_re = re.compile(r":\s*$") + + # Transition list format + # ["FROM", "TO", condition, action] + transitions = [ + # FILEHEAD + + # single line comments + ["FILEHEAD", "FILEHEAD", self.single_comment_re.search, + self.appendCommentLine], + ["FILEHEAD", "FILEHEAD", self.double_comment_re.search, + self.appendCommentLine], + + # multiline comments + ["FILEHEAD", "FILEHEAD_COMMENT_SINGLE", + self.start_single_comment_re.search, self.appendCommentLine], + ["FILEHEAD_COMMENT_SINGLE", "FILEHEAD", + self.end_single_comment_re.search, self.appendCommentLine], + ["FILEHEAD_COMMENT_SINGLE", "FILEHEAD_COMMENT_SINGLE", + self.catchall, self.appendCommentLine], + ["FILEHEAD", "FILEHEAD_COMMENT_DOUBLE", + self.start_double_comment_re.search, self.appendCommentLine], + ["FILEHEAD_COMMENT_DOUBLE", "FILEHEAD", + self.end_double_comment_re.search, self.appendCommentLine], + ["FILEHEAD_COMMENT_DOUBLE", "FILEHEAD_COMMENT_DOUBLE", + self.catchall, self.appendCommentLine], + + # other lines + ["FILEHEAD", "FILEHEAD", self.empty_re.search, self.appendFileheadLine], + ["FILEHEAD", "FILEHEAD", self.hashline_re.search, self.appendFileheadLine], + ["FILEHEAD", "FILEHEAD", self.importline_re.search, + self.appendFileheadLine], + ["FILEHEAD", "DEFCLASS", self.defclass_re.search, self.resetCommentSearch], + ["FILEHEAD", "DEFCLASS_MULTI", + self.multiline_defclass_start_re.search, self.resetCommentSearch], + ["FILEHEAD", "DEFCLASS_BODY", self.catchall, self.appendFileheadLine], + + # DEFCLASS + + # single line comments + ["DEFCLASS", "DEFCLASS_BODY", + self.single_comment_re.search, self.appendCommentLine], + ["DEFCLASS", "DEFCLASS_BODY", + self.double_comment_re.search, self.appendCommentLine], + + # multiline comments + ["DEFCLASS", "COMMENT_SINGLE", + self.start_single_comment_re.search, self.appendCommentLine], + ["COMMENT_SINGLE", "DEFCLASS_BODY", + self.end_single_comment_re.search, self.appendCommentLine], + ["COMMENT_SINGLE", "COMMENT_SINGLE", + self.catchall, self.appendCommentLine], + ["DEFCLASS", "COMMENT_DOUBLE", + self.start_double_comment_re.search, self.appendCommentLine], + ["COMMENT_DOUBLE", "DEFCLASS_BODY", + self.end_double_comment_re.search, self.appendCommentLine], + ["COMMENT_DOUBLE", "COMMENT_DOUBLE", + self.catchall, self.appendCommentLine], + + # other lines + ["DEFCLASS", "DEFCLASS", self.empty_re.search, self.appendDefclassLine], + ["DEFCLASS", "DEFCLASS", self.defclass_re.search, self.resetCommentSearch], + ["DEFCLASS", "DEFCLASS_MULTI", + self.multiline_defclass_start_re.search, self.resetCommentSearch], + ["DEFCLASS", "DEFCLASS_BODY", self.catchall, self.stopCommentSearch], + + # DEFCLASS_BODY + + ["DEFCLASS_BODY", "DEFCLASS", + self.defclass_re.search, self.startCommentSearch], + ["DEFCLASS_BODY", "DEFCLASS_MULTI", + self.multiline_defclass_start_re.search, self.startCommentSearch], + ["DEFCLASS_BODY", "DEFCLASS_BODY", self.catchall, self.appendNormalLine], + + # DEFCLASS_MULTI + ["DEFCLASS_MULTI", "DEFCLASS", + self.multiline_defclass_end_re.search, self.appendDefclassLine], + ["DEFCLASS_MULTI", "DEFCLASS_MULTI", + self.catchall, self.appendDefclassLine], + ] + + self.fsm = FSM("FILEHEAD", transitions) + self.outstream = sys.stdout + + self.output = [] + self.comment = [] + self.filehead = [] + self.defclass = [] + self.indent = "" + + def __closeComment(self): + """Appends any open comment block and triggering block to the output.""" + + if args.autobrief: + if len(self.comment) == 1 \ + or (len(self.comment) > 2 and self.comment[1].strip() == ''): + self.comment[0] = self.__docstringSummaryToBrief( + self.comment[0]) + + if self.comment: + block = self.makeCommentBlock() + self.output.extend(block) + + if self.defclass: + self.output.extend(self.defclass) + + def __docstringSummaryToBrief(self, line): + """Adds \\brief to the docstrings summary line. + + A \\brief is prepended, provided no other doxygen command is at the + start of the line. + """ + stripped = line.strip() + if stripped and not stripped[0] in ('@', '\\'): + return "\\brief " + line + else: + return line + + def __flushBuffer(self): + """Flushes the current outputbuffer to the outstream.""" + if self.output: + try: + if args.debug: + print("# OUTPUT: ", self.output, file=sys.stderr) + print("\n".join(self.output), file=self.outstream) + self.outstream.flush() + except IOError: + # Fix for FS#33. Catches "broken pipe" when doxygen closes + # stdout prematurely upon usage of INPUT_FILTER, INLINE_SOURCES + # and FILTER_SOURCE_FILES. + pass + self.output = [] + + def catchall(self, input): + """The catchall-condition, always returns true.""" + return True + + def resetCommentSearch(self, match): + """Restarts a new comment search for a different triggering line. + + Closes the current commentblock and starts a new comment search. + """ + if args.debug: + print("# CALLBACK: resetCommentSearch", file=sys.stderr) + self.__closeComment() + self.startCommentSearch(match) + + def startCommentSearch(self, match): + """Starts a new comment search. + + Saves the triggering line, resets the current comment and saves + the current indentation. + """ + if args.debug: + print("# CALLBACK: startCommentSearch", file=sys.stderr) + self.defclass = [self.fsm.current_input] + self.comment = [] + self.indent = match.group(1) + + def stopCommentSearch(self, match): + """Stops a comment search. + + Closes the current commentblock, resets the triggering line and + appends the current line to the output. + """ + if args.debug: + print("# CALLBACK: stopCommentSearch", file=sys.stderr) + self.__closeComment() + + self.defclass = [] + self.output.append(self.fsm.current_input) + + def appendFileheadLine(self, match): + """Appends a line in the FILEHEAD state. + + Closes the open comment block, resets it and appends the current line. + """ + if args.debug: + print("# CALLBACK: appendFileheadLine", file=sys.stderr) + self.__closeComment() + self.comment = [] + self.output.append(self.fsm.current_input) + + def appendCommentLine(self, match): + """Appends a comment line. + + The comment delimiter is removed from multiline start and ends as + well as singleline comments. + """ + if args.debug: + print("# CALLBACK: appendCommentLine", file=sys.stderr) + (from_state, to_state, condition, callback) = self.fsm.current_transition + + # single line comment + if (from_state == "DEFCLASS" and to_state == "DEFCLASS_BODY") \ + or (from_state == "FILEHEAD" and to_state == "FILEHEAD"): + # remove comment delimiter from begin and end of the line + activeCommentDelim = match.group(1) + line = self.fsm.current_input + self.comment.append(line[line.find( + activeCommentDelim) + len(activeCommentDelim):line.rfind(activeCommentDelim)]) + + if (to_state == "DEFCLASS_BODY"): + self.__closeComment() + self.defclass = [] + # multiline start + elif from_state == "DEFCLASS" or from_state == "FILEHEAD": + # remove comment delimiter from begin of the line + activeCommentDelim = match.group(1) + line = self.fsm.current_input + self.comment.append( + line[line.find(activeCommentDelim) + len(activeCommentDelim):]) + # multiline end + elif to_state == "DEFCLASS_BODY" or to_state == "FILEHEAD": + # remove comment delimiter from end of the line + activeCommentDelim = match.group(1) + line = self.fsm.current_input + self.comment.append(line[0:line.rfind(activeCommentDelim)]) + if (to_state == "DEFCLASS_BODY"): + self.__closeComment() + self.defclass = [] + # in multiline comment + else: + # just append the comment line + self.comment.append(self.fsm.current_input) + + def appendNormalLine(self, match): + """Appends a line to the output.""" + if args.debug: + print("# CALLBACK: appendNormalLine", file=sys.stderr) + self.output.append(self.fsm.current_input) + + def appendDefclassLine(self, match): + """Appends a line to the triggering block.""" + if args.debug: + print("# CALLBACK: appendDefclassLine", file=sys.stderr) + self.defclass.append(self.fsm.current_input) + + def makeCommentBlock(self): + """Indents the current comment block with respect to the current + indentation level. + + @returns a list of indented comment lines + """ + doxyStart = "##" + commentLines = self.comment + + commentLines = ["%s# %s" % (self.indent, x) for x in commentLines] + l = [self.indent + doxyStart] + l.extend(commentLines) + + return l + + def parse(self, input): + """Parses a python file given as input string and returns the doxygen- + compatible representation. + + @param input the python code to parse + @returns the modified python code + """ + lines = input.split("\n") + + for line in lines: + self.fsm.makeTransition(line) + + if self.fsm.current_state == "DEFCLASS": + self.__closeComment() + + return "\n".join(self.output) + + def parseFile(self, filename): + """Parses a python file given as input string and returns the doxygen- + compatible representation. + + @param input the python code to parse + @returns the modified python code + """ + f = open(filename, 'r') + + for line in f: + self.parseLine(line.rstrip('\r\n')) + if self.fsm.current_state == "DEFCLASS": + self.__closeComment() + self.__flushBuffer() + f.close() + + def parseLine(self, line): + """Parse one line of python and flush the resulting output to the + outstream. + + @param line the python code line to parse + """ + self.fsm.makeTransition(line) + self.__flushBuffer() + + +def argParse(): + """Parses commandline args.""" + parser = ArgumentParser(prog=__applicationName__) + + parser.add_argument("--version", action="version", + version="%(prog)s " + __version__ + ) + parser.add_argument("--autobrief", action="store_true", + help="use the docstring summary line as \\brief description" + ) + parser.add_argument("--debug", action="store_true", + help="enable debug output on stderr" + ) + parser.add_argument("filename", metavar="FILENAME") + + return parser.parse_args() + + +def main(): + """Starts the parser on the file given by the filename as the first + argument on the commandline. + """ + global args + args = argParse() + fsm = Doxypy() + fsm.parseFile(args.filename) + + +if __name__ == "__main__": + main() diff --git a/docs/doxygen/other/group_defs.dox b/docs/doxygen/other/group_defs.dox index 7ff61c5..9af97c1 100644 --- a/docs/doxygen/other/group_defs.dox +++ b/docs/doxygen/other/group_defs.dox @@ -4,4 +4,3 @@ * module are listed here or in the subcategories below. * */ - diff --git a/docs/doxygen/pydoc_macros.h b/docs/doxygen/pydoc_macros.h new file mode 100644 index 0000000..fb3954b --- /dev/null +++ b/docs/doxygen/pydoc_macros.h @@ -0,0 +1,19 @@ +#ifndef PYDOC_MACROS_H +#define PYDOC_MACROS_H + +#define __EXPAND(x) x +#define __COUNT(_1, _2, _3, _4, _5, _6, _7, COUNT, ...) COUNT +#define __VA_SIZE(...) __EXPAND(__COUNT(__VA_ARGS__, 7, 6, 5, 4, 3, 2, 1)) +#define __CAT1(a, b) a##b +#define __CAT2(a, b) __CAT1(a, b) +#define __DOC1(n1) __doc_##n1 +#define __DOC2(n1, n2) __doc_##n1##_##n2 +#define __DOC3(n1, n2, n3) __doc_##n1##_##n2##_##n3 +#define __DOC4(n1, n2, n3, n4) __doc_##n1##_##n2##_##n3##_##n4 +#define __DOC5(n1, n2, n3, n4, n5) __doc_##n1##_##n2##_##n3##_##n4##_##n5 +#define __DOC6(n1, n2, n3, n4, n5, n6) __doc_##n1##_##n2##_##n3##_##n4##_##n5##_##n6 +#define __DOC7(n1, n2, n3, n4, n5, n6, n7) \ + __doc_##n1##_##n2##_##n3##_##n4##_##n5##_##n6##_##n7 +#define DOC(...) __EXPAND(__EXPAND(__CAT2(__DOC, __VA_SIZE(__VA_ARGS__)))(__VA_ARGS__)) + +#endif // PYDOC_MACROS_H diff --git a/docs/doxygen/swig_doc.py b/docs/doxygen/update_pydoc.py similarity index 52% rename from docs/doxygen/swig_doc.py rename to docs/doxygen/update_pydoc.py index 56691e2..b65e168 100644 --- a/docs/doxygen/swig_doc.py +++ b/docs/doxygen/update_pydoc.py @@ -2,42 +2,37 @@ # Copyright 2010-2012 Free Software Foundation, Inc. # # This file was generated by gr_modtool, a tool from the GNU Radio framework -# This file is a part of gr-tempest +# This file is a part of gnuradio # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. # """ -Creates the swig_doc.i SWIG interface file. -Execute using: python swig_doc.py xml_path outputfilename +Updates the *pydoc_h files for a module +Execute using: python update_pydoc.py xml_path outputfilename -The file instructs SWIG to transfer the doxygen comments into the +The file instructs Pybind11 to transfer the doxygen comments into the python docstrings. """ -from __future__ import unicode_literals -import sys, time +import os +import sys +import time +import glob +import re +import json +from argparse import ArgumentParser from doxyxml import DoxyIndex, DoxyClass, DoxyFriend, DoxyFunction, DoxyFile from doxyxml import DoxyOther, base + def py_name(name): bits = name.split('_') return '_'.join(bits[1:]) + def make_name(name): bits = name.split('_') return bits[0] + '_make_' + '_'.join(bits[1:]) @@ -62,6 +57,7 @@ def includes(cls, item): is_a_block = di.has_member(friendname, DoxyFunction) return is_a_block + class Block2(object): """ Checks if doxyxml produced objects correspond to a new style @@ -75,7 +71,8 @@ def includes(cls, item): # Check for a parsing error. if item.error(): return False - is_a_block2 = item.has_member('make', DoxyFunction) and item.has_member('sptr', DoxyOther) + is_a_block2 = item.has_member( + 'make', DoxyFunction) and item.has_member('sptr', DoxyOther) return is_a_block2 @@ -87,6 +84,7 @@ def utoascii(text): return '' out = text.encode('ascii', 'replace') # swig will require us to replace blackslash with 4 backslashes + # TODO: evaluate what this should be for pybind11 out = out.replace(b'\\', b'\\\\\\\\') out = out.replace(b'"', b'\\"').decode('ascii') return str(out) @@ -105,6 +103,7 @@ def combine_descriptions(obj): description.append(dd) return utoascii('\n\n'.join(description)).strip() + def format_params(parameteritems): output = ['Args:'] template = ' {0} : {1}' @@ -112,10 +111,13 @@ def format_params(parameteritems): output.append(template.format(pi.name, pi.description)) return '\n'.join(output) + entry_templ = '%feature("docstring") {name} "{docstring}"' + + def make_entry(obj, name=None, templ="{description}", description=None, params=[]): """ - Create a docstring entry for a swig interface file. + Create a docstring key/value pair, where the key is the object name. obj - a doxyxml object from which documentation will be extracted. name - the name of the C object (defaults to obj.name()) @@ -125,7 +127,9 @@ def make_entry(obj, name=None, templ="{description}", description=None, params=[ used as the description instead of extracting it from obj. """ if name is None: - name=obj.name() + name = obj.name() + if hasattr(obj, '_parse_data') and hasattr(obj._parse_data, 'definition'): + name = obj._parse_data.definition.split(' ')[-1] if "operator " in name: return '' if description is None: @@ -134,56 +138,28 @@ def make_entry(obj, name=None, templ="{description}", description=None, params=[ description += '\n\n' description += utoascii(format_params(params)) docstring = templ.format(description=description) - if not docstring: - return '' - return entry_templ.format( - name=name, - docstring=docstring, - ) - - -def make_func_entry(func, name=None, description=None, params=None): - """ - Create a function docstring entry for a swig interface file. - func - a doxyxml object from which documentation will be extracted. - name - the name of the C object (defaults to func.name()) - description - if this optional variable is set then it's value is - used as the description instead of extracting it from func. - params - a parameter list that overrides using func.params. - """ - #if params is None: - # params = func.params - #params = [prm.declname for prm in params] - #if params: - # sig = "Params: (%s)" % ", ".join(params) - #else: - # sig = "Params: (NONE)" - #templ = "{description}\n\n" + sig - #return make_entry(func, name=name, templ=utoascii(templ), - # description=description) - return make_entry(func, name=name, description=description, params=params) + return {name: docstring} def make_class_entry(klass, description=None, ignored_methods=[], params=None): """ - Create a class docstring for a swig interface file. + Create a class docstring key/value pair. """ if params is None: params = klass.params - output = [] - output.append(make_entry(klass, description=description, params=params)) + output = {} + output.update(make_entry(klass, description=description, params=params)) for func in klass.in_category(DoxyFunction): if func.name() not in ignored_methods: name = klass.name() + '::' + func.name() - output.append(make_func_entry(func, name=name)) - return "\n\n".join(output) + output.update(make_entry(func, name=name)) + return output def make_block_entry(di, block): """ - Create class and function docstrings of a gnuradio block for a - swig interface file. + Create class and function docstrings of a gnuradio block """ descriptions = [] # Get the documentation associated with the class. @@ -208,48 +184,42 @@ def make_block_entry(di, block): super_description = "\n\n".join(descriptions) # Associate the combined description with the class and # the make function. - output = [] - output.append(make_class_entry(block, description=super_description)) - output.append(make_func_entry(make_func, description=super_description, - params=block.params)) - return "\n\n".join(output) + output = {} + output.update(make_class_entry(block, description=super_description)) + output.update(make_entry(make_func, description=super_description, + params=block.params)) + return output + def make_block2_entry(di, block): """ - Create class and function docstrings of a new style gnuradio block for a - swig interface file. + Create class and function docstrings of a new style gnuradio block """ - descriptions = [] # For new style blocks all the relevant documentation should be # associated with the 'make' method. class_description = combine_descriptions(block) make_func = block.get_member('make', DoxyFunction) make_description = combine_descriptions(make_func) - description = class_description + "\n\nConstructor Specific Documentation:\n\n" + make_description + description = class_description + \ + "\n\nConstructor Specific Documentation:\n\n" + make_description # Associate the combined description with the class and # the make function. - output = [] - output.append(make_class_entry( - block, description=description, - ignored_methods=['make'], params=make_func.params)) + output = {} + output.update(make_class_entry( + block, description=description, + ignored_methods=['make'], params=make_func.params)) makename = block.name() + '::make' - output.append(make_func_entry( - make_func, name=makename, description=description, - params=make_func.params)) - return "\n\n".join(output) + output.update(make_entry( + make_func, name=makename, description=description, + params=make_func.params)) + return output -def make_swig_interface_file(di, swigdocfilename, custom_output=None): - output = [""" -/* - * This file was automatically generated using swig_doc.py. - * - * Any changes to it will be lost next time it is regenerated. - */ -"""] +def get_docstrings_dict(di, custom_output=None): - if custom_output is not None: - output.append(custom_output) + output = {} + if custom_output: + output.update(custom_output) # Create docstrings for the blocks. blocks = di.in_category(Block) @@ -262,21 +232,23 @@ def make_swig_interface_file(di, swigdocfilename, custom_output=None): # Don't want to risk writing to output twice. if make_func.name() not in make_funcs: make_funcs.add(make_func.name()) - output.append(make_block_entry(di, block)) + output.update(make_block_entry(di, block)) except block.ParsingError: - sys.stderr.write('Parsing error for block {0}\n'.format(block.name())) + sys.stderr.write( + 'Parsing error for block {0}\n'.format(block.name())) raise for block in blocks2: try: make_func = block.get_member('make', DoxyFunction) - make_func_name = block.name() +'::make' + make_func_name = block.name() + '::make' # Don't want to risk writing to output twice. if make_func_name not in make_funcs: make_funcs.add(make_func_name) - output.append(make_block2_entry(di, block)) + output.update(make_block2_entry(di, block)) except block.ParsingError: - sys.stderr.write('Parsing error for block {0}\n'.format(block.name())) + sys.stderr.write( + 'Parsing error for block {0}\n'.format(block.name())) raise # Create docstrings for functions @@ -285,9 +257,10 @@ def make_swig_interface_file(di, swigdocfilename, custom_output=None): if f.name() not in make_funcs and not f.name().startswith('std::')] for f in funcs: try: - output.append(make_func_entry(f)) + output.update(make_entry(f)) except f.ParsingError: - sys.stderr.write('Parsing error for function {0}\n'.format(f.name())) + sys.stderr.write( + 'Parsing error for function {0}\n'.format(f.name())) # Create docstrings for classes block_names = [block.name() for block in blocks] @@ -296,37 +269,104 @@ def make_swig_interface_file(di, swigdocfilename, custom_output=None): if k.name() not in block_names and not k.name().startswith('std::')] for k in klasses: try: - output.append(make_class_entry(k)) + output.update(make_class_entry(k)) except k.ParsingError: sys.stderr.write('Parsing error for class {0}\n'.format(k.name())) # Docstrings are not created for anything that is not a function or a class. # If this excludes anything important please add it here. - output = "\n\n".join(output) + return output + + +def sub_docstring_in_pydoc_h(pydoc_files, docstrings_dict, output_dir, filter_str=None): + if filter_str: + docstrings_dict = { + k: v for k, v in docstrings_dict.items() if k.startswith(filter_str)} + + with open(os.path.join(output_dir, 'docstring_status'), 'w') as status_file: + + for pydoc_file in pydoc_files: + if filter_str: + filter_str2 = "::".join((filter_str, os.path.split( + pydoc_file)[-1].split('_pydoc_template.h')[0])) + docstrings_dict2 = { + k: v for k, v in docstrings_dict.items() if k.startswith(filter_str2)} + else: + docstrings_dict2 = docstrings_dict + + file_in = open(pydoc_file, 'r').read() + for key, value in docstrings_dict2.items(): + file_in_tmp = file_in + try: + doc_key = key.split("::") + # if 'gr' in doc_key: + # doc_key.remove('gr') + doc_key = '_'.join(doc_key) + regexp = r'(__doc_{} =\sR\"doc\()[^)]*(\)doc\")'.format( + doc_key) + regexp = re.compile(regexp, re.MULTILINE) + + (file_in, nsubs) = regexp.subn( + r'\1' + value + r'\2', file_in, count=1) + if nsubs == 1: + status_file.write("PASS: " + pydoc_file + "\n") + except KeyboardInterrupt: + raise KeyboardInterrupt + except: # be permissive, TODO log, but just leave the docstring blank + status_file.write("FAIL: " + pydoc_file + "\n") + file_in = file_in_tmp + + output_pathname = os.path.join(output_dir, os.path.basename( + pydoc_file).replace('_template.h', '.h')) + with open(output_pathname, 'w') as file_out: + file_out.write(file_in) + + +def copy_docstring_templates(pydoc_files, output_dir): + with open(os.path.join(output_dir, 'docstring_status'), 'w') as status_file: + for pydoc_file in pydoc_files: + file_in = open(pydoc_file, 'r').read() + output_pathname = os.path.join(output_dir, os.path.basename( + pydoc_file).replace('_template.h', '.h')) + with open(output_pathname, 'w') as file_out: + file_out.write(file_in) + status_file.write("DONE") + + +def argParse(): + """Parses commandline args.""" + desc = 'Scrape the doxygen generated xml for docstrings to insert into python bindings' + parser = ArgumentParser(description=desc) + + parser.add_argument("function", help="Operation to perform on docstrings", choices=[ + "scrape", "sub", "copy"]) + + parser.add_argument("--xml_path") + parser.add_argument("--bindings_dir") + parser.add_argument("--output_dir") + parser.add_argument("--json_path") + parser.add_argument("--filter", default=None) + + return parser.parse_args() - swig_doc = open(swigdocfilename, 'w') - swig_doc.write(output) - swig_doc.close() if __name__ == "__main__": # Parse command line options and set up doxyxml. - err_msg = "Execute using: python swig_doc.py xml_path outputfilename" - if len(sys.argv) != 3: - raise Exception(err_msg) - xml_path = sys.argv[1] - swigdocfilename = sys.argv[2] - di = DoxyIndex(xml_path) - - # gnuradio.gr.msq_queue.insert_tail and delete_head create errors unless docstrings are defined! - # This is presumably a bug in SWIG. - #msg_q = di.get_member(u'gr_msg_queue', DoxyClass) - #insert_tail = msg_q.get_member(u'insert_tail', DoxyFunction) - #delete_head = msg_q.get_member(u'delete_head', DoxyFunction) - output = [] - #output.append(make_func_entry(insert_tail, name='gr_py_msg_queue__insert_tail')) - #output.append(make_func_entry(delete_head, name='gr_py_msg_queue__delete_head')) - custom_output = "\n\n".join(output) - - # Generate the docstrings interface file. - make_swig_interface_file(di, swigdocfilename, custom_output=custom_output) + args = argParse() + if args.function.lower() == 'scrape': + di = DoxyIndex(args.xml_path) + docstrings_dict = get_docstrings_dict(di) + with open(args.json_path, 'w') as fp: + json.dump(docstrings_dict, fp) + elif args.function.lower() == 'sub': + with open(args.json_path, 'r') as fp: + docstrings_dict = json.load(fp) + pydoc_files = glob.glob(os.path.join( + args.bindings_dir, '*_pydoc_template.h')) + sub_docstring_in_pydoc_h( + pydoc_files, docstrings_dict, args.output_dir, args.filter) + elif args.function.lower() == 'copy': + pydoc_files = glob.glob(os.path.join( + args.bindings_dir, '*_pydoc_template.h')) + copy_docstring_templates(pydoc_files, args.output_dir) diff --git a/examples/Demo/HDMI_50MHzSps_1485MHzCentral_Magnitude.grc b/examples/Demo/HDMI_50MHzSps_1485MHzCentral_Magnitude.grc new file mode 100644 index 0000000..503f022 --- /dev/null +++ b/examples/Demo/HDMI_50MHzSps_1485MHzCentral_Magnitude.grc @@ -0,0 +1,1029 @@ +options: + parameters: + author: '' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [15, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1061, 35] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [859, 34] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 220] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [505, 34] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 156] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [656, 220] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 34] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 157] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 244] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '10' + value: '1' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 127] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 215] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 278] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 154] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '-1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [21, 235] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [332, 244] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [331, 126] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [225, 61] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [597, 634] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 470] + rotation: 0 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1336, 493] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1099, 491] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1496, 796] + rotation: 270 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [22, 185] + rotation: 0 + state: true +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '15.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [868, 623] + rotation: 270 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [874, 817] + rotation: 180 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [17, 92] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [706, 628] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1472, 578] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 473] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs_enb0: '""' + dc_offs_enb1: '""' + dc_offs_enb10: '""' + dc_offs_enb11: '""' + dc_offs_enb12: '""' + dc_offs_enb13: '""' + dc_offs_enb14: '""' + dc_offs_enb15: '""' + dc_offs_enb16: '""' + dc_offs_enb17: '""' + dc_offs_enb18: '""' + dc_offs_enb19: '""' + dc_offs_enb2: '""' + dc_offs_enb20: '""' + dc_offs_enb21: '""' + dc_offs_enb22: '""' + dc_offs_enb23: '""' + dc_offs_enb24: '""' + dc_offs_enb25: '""' + dc_offs_enb26: '""' + dc_offs_enb27: '""' + dc_offs_enb28: '""' + dc_offs_enb29: '""' + dc_offs_enb3: '""' + dc_offs_enb30: '""' + dc_offs_enb31: '""' + dc_offs_enb4: '""' + dc_offs_enb5: '""' + dc_offs_enb6: '""' + dc_offs_enb7: '""' + dc_offs_enb8: '""' + dc_offs_enb9: '""' + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + iq_imbal_enb0: '""' + iq_imbal_enb1: '""' + iq_imbal_enb10: '""' + iq_imbal_enb11: '""' + iq_imbal_enb12: '""' + iq_imbal_enb13: '""' + iq_imbal_enb14: '""' + iq_imbal_enb15: '""' + iq_imbal_enb16: '""' + iq_imbal_enb17: '""' + iq_imbal_enb18: '""' + iq_imbal_enb19: '""' + iq_imbal_enb2: '""' + iq_imbal_enb20: '""' + iq_imbal_enb21: '""' + iq_imbal_enb22: '""' + iq_imbal_enb23: '""' + iq_imbal_enb24: '""' + iq_imbal_enb25: '""' + iq_imbal_enb26: '""' + iq_imbal_enb27: '""' + iq_imbal_enb28: '""' + iq_imbal_enb29: '""' + iq_imbal_enb3: '""' + iq_imbal_enb30: '""' + iq_imbal_enb31: '""' + iq_imbal_enb4: '""' + iq_imbal_enb5: '""' + iq_imbal_enb6: '""' + iq_imbal_enb7: '""' + iq_imbal_enb8: '""' + iq_imbal_enb9: '""' + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + norm_gain0: 'False' + norm_gain1: 'False' + norm_gain10: 'False' + norm_gain11: 'False' + norm_gain12: 'False' + norm_gain13: 'False' + norm_gain14: 'False' + norm_gain15: 'False' + norm_gain16: 'False' + norm_gain17: 'False' + norm_gain18: 'False' + norm_gain19: 'False' + norm_gain2: 'False' + norm_gain20: 'False' + norm_gain21: 'False' + norm_gain22: 'False' + norm_gain23: 'False' + norm_gain24: 'False' + norm_gain25: 'False' + norm_gain26: 'False' + norm_gain27: 'False' + norm_gain28: 'False' + norm_gain29: 'False' + norm_gain3: 'False' + norm_gain30: 'False' + norm_gain31: 'False' + norm_gain4: 'False' + norm_gain5: 'False' + norm_gain6: 'False' + norm_gain7: 'False' + norm_gain8: 'False' + norm_gain9: 'False' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [240, 438] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1473, 1001] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0_0, '0', blocks_delay_0_0, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 diff --git a/examples/Demo/HDMI_50MHzSps_300MHzCentral_Magnitude.grc b/examples/Demo/HDMI_50MHzSps_300MHzCentral_Magnitude.grc new file mode 100644 index 0000000..23083e9 --- /dev/null +++ b/examples/Demo/HDMI_50MHzSps_300MHzCentral_Magnitude.grc @@ -0,0 +1,1029 @@ +options: + parameters: + author: '' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [15, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1061, 35] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [859, 34] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 220] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [505, 34] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 156] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [656, 220] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 34] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 157] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 244] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 127] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 215] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 278] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 154] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '-1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [21, 235] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [332, 244] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [331, 126] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [225, 61] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [648, 809] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 470] + rotation: 0 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1336, 493] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1099, 491] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1501, 796] + rotation: 270 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [22, 185] + rotation: 0 + state: true +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '19.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [919, 798] + rotation: 270 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [925, 992] + rotation: 180 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [17, 92] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [757, 803] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1472, 578] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 473] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs_enb0: '""' + dc_offs_enb1: '""' + dc_offs_enb10: '""' + dc_offs_enb11: '""' + dc_offs_enb12: '""' + dc_offs_enb13: '""' + dc_offs_enb14: '""' + dc_offs_enb15: '""' + dc_offs_enb16: '""' + dc_offs_enb17: '""' + dc_offs_enb18: '""' + dc_offs_enb19: '""' + dc_offs_enb2: '""' + dc_offs_enb20: '""' + dc_offs_enb21: '""' + dc_offs_enb22: '""' + dc_offs_enb23: '""' + dc_offs_enb24: '""' + dc_offs_enb25: '""' + dc_offs_enb26: '""' + dc_offs_enb27: '""' + dc_offs_enb28: '""' + dc_offs_enb29: '""' + dc_offs_enb3: '""' + dc_offs_enb30: '""' + dc_offs_enb31: '""' + dc_offs_enb4: '""' + dc_offs_enb5: '""' + dc_offs_enb6: '""' + dc_offs_enb7: '""' + dc_offs_enb8: '""' + dc_offs_enb9: '""' + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + iq_imbal_enb0: '""' + iq_imbal_enb1: '""' + iq_imbal_enb10: '""' + iq_imbal_enb11: '""' + iq_imbal_enb12: '""' + iq_imbal_enb13: '""' + iq_imbal_enb14: '""' + iq_imbal_enb15: '""' + iq_imbal_enb16: '""' + iq_imbal_enb17: '""' + iq_imbal_enb18: '""' + iq_imbal_enb19: '""' + iq_imbal_enb2: '""' + iq_imbal_enb20: '""' + iq_imbal_enb21: '""' + iq_imbal_enb22: '""' + iq_imbal_enb23: '""' + iq_imbal_enb24: '""' + iq_imbal_enb25: '""' + iq_imbal_enb26: '""' + iq_imbal_enb27: '""' + iq_imbal_enb28: '""' + iq_imbal_enb29: '""' + iq_imbal_enb3: '""' + iq_imbal_enb30: '""' + iq_imbal_enb31: '""' + iq_imbal_enb4: '""' + iq_imbal_enb5: '""' + iq_imbal_enb6: '""' + iq_imbal_enb7: '""' + iq_imbal_enb8: '""' + iq_imbal_enb9: '""' + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + norm_gain0: 'False' + norm_gain1: 'False' + norm_gain10: 'False' + norm_gain11: 'False' + norm_gain12: 'False' + norm_gain13: 'False' + norm_gain14: 'False' + norm_gain15: 'False' + norm_gain16: 'False' + norm_gain17: 'False' + norm_gain18: 'False' + norm_gain19: 'False' + norm_gain2: 'False' + norm_gain20: 'False' + norm_gain21: 'False' + norm_gain22: 'False' + norm_gain23: 'False' + norm_gain24: 'False' + norm_gain25: 'False' + norm_gain26: 'False' + norm_gain27: 'False' + norm_gain28: 'False' + norm_gain29: 'False' + norm_gain3: 'False' + norm_gain30: 'False' + norm_gain31: 'False' + norm_gain4: 'False' + norm_gain5: 'False' + norm_gain6: 'False' + norm_gain7: 'False' + norm_gain8: 'False' + norm_gain9: 'False' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [240, 438] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1474, 1001] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0_0, '0', blocks_delay_0_0, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 diff --git a/examples/Demo/HDMI_50MHzSps_300MHzCentral_Real.grc b/examples/Demo/HDMI_50MHzSps_300MHzCentral_Real.grc new file mode 100644 index 0000000..5e1b7bf --- /dev/null +++ b/examples/Demo/HDMI_50MHzSps_300MHzCentral_Real.grc @@ -0,0 +1,1707 @@ +options: + parameters: + author: '' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [81, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [932, 1064] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [766, 252] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [623, 168] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [350, 102] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [624, 64] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 178] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 104] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 126] + rotation: 0 + state: enabled +- name: eq_fir_1080p + id: variable + parameters: + comment: '' + value: '[-0.0004 + 0j,-0.0000 + 0.0000j,-0.0004 - 0.0000j,-0.0000 + 0.0001j,-0.0004 + - 0.0001j,-0.0000 + 0.0001j,-0.0004 - 0.0001j,-0.0000 + 0.0002j,-0.0004 + - 0.0001j,-0.0001 + 0.0002j,-0.0003 - 0.0001j,-0.0001 + 0.0003j,-0.0003 + - 0.0001j,-0.0002 + 0.0003j,-0.0003 - 0.0001j,-0.0002 + 0.0004j,-0.0002 + - 0.0001j,-0.0002 + 0.0004j,-0.0002 - 0.0001j,-0.0003 + 0.0004j,-0.0001 + - 0.0001j,-0.0003 + 0.0004j,-0.0001 - 0.0001j,-0.0004 + 0.0004j,-0.0000 + - 0.0000j,-0.0004 + 0.0004j, 0.0000 + 0.0000j,-0.0005 + 0.0004j, 0.0000 + + 0.0001j,-0.0005 + 0.0004j, 0.0001 + 0.0001j,-0.0006 + 0.0003j, 0.0001 + + 0.0002j,-0.0006 + 0.0003j, 0.0001 + 0.0002j,-0.0006 + 0.0003j, 0.0001 + + 0.0003j,-0.0006 + 0.0002j, 0.0001 + 0.0004j,-0.0006 + 0.0002j, 0.0001 + + 0.0005j,-0.0006 + 0.0001j, 0.0001 + 0.0005j,-0.0006 + 0.0001j, 0.0001 + + 0.0006j,-0.0006 + 0.0000j, 0.0000 + 0.0007j,-0.0006 - 0.0000j,-0.0000 + + 0.0008j,-0.0005 - 0.0000j,-0.0001 + 0.0008j,-0.0005 - 0.0001j,-0.0002 + + 0.0009j,-0.0004 - 0.0001j,-0.0002 + 0.0009j,-0.0004 - 0.0001j,-0.0003 + + 0.0010j,-0.0003 - 0.0001j,-0.0004 + 0.0010j,-0.0002 - 0.0001j,-0.0005 + + 0.0010j,-0.0002 - 0.0001j,-0.0006 + 0.0011j,-0.0001 - 0.0001j,-0.0007 + + 0.0011j,-0.0000 - 0.0000j,-0.0008 + 0.0010j, 0.0000 + 0.0000j,-0.0009 + + 0.0010j, 0.0001 + 0.0001j,-0.0010 + 0.0010j, 0.0002 + 0.0002j,-0.0011 + + 0.0009j, 0.0002 + 0.0003j,-0.0011 + 0.0009j, 0.0003 + 0.0004j,-0.0012 + + 0.0008j, 0.0003 + 0.0005j,-0.0013 + 0.0007j, 0.0003 + 0.0006j,-0.0013 + + 0.0006j, 0.0003 + 0.0007j,-0.0014 + 0.0005j, 0.0003 + 0.0008j,-0.0014 + + 0.0004j, 0.0003 + 0.0010j,-0.0014 + 0.0003j, 0.0002 + 0.0011j,-0.0014 + + 0.0002j, 0.0002 + 0.0013j,-0.0015 + 0.0002j, 0.0001 + 0.0019j,-0.0038 + + 0.0001j, 0.0001 + 0.0198j, 0.0603 + 0.0018j, 0.0091 - 0.1418j,-0.2643 + - 0.0260j,-0.0543 + 0.4093j, 0.5602 + 0.0937j, 0.1441 - 0.7130j,-0.8669 + - 0.2059j,-0.2777 + 1.0157j, 1.1535 + 0.3576j, 0.4438 - 1.2773j,-1.3776 + - 0.5314j,-0.6122 + 1.4403j, 1.4636 + 0.6813j, 0.7425 - 1.4640j,-1.4577 + - 0.8023j,-0.8613 + 1.4470j, 1.4300 + 0.9179j, 0.9747 - 1.4114j,-1.3954 + - 1.0349j,-1.0955 + 1.3775j, 1.3531 + 1.1528j, 1.2096 - 1.3263j,-1.3019 + - 1.2703j,-1.3319 + 1.2759j, 1.2436 + 1.3891j, 1.4451 - 1.2084j,-1.1749 + - 1.5056j,-1.5673 + 1.1402j, 1.0995 + 1.6238j, 1.6782 - 1.0555j,-1.0126 + - 1.7375j,-1.7986 + 0.9685j, 0.9189 + 1.8538j, 1.9057 - 0.8658j,-0.8130 + - 1.9627j,-2.0224 + 0.7588j, 0.6998 + 2.0754j, 2.1239 - 0.6372j,-0.5739 + - 2.1776j,-2.2347 + 0.5090j, 0.4399 + 2.2848j, 2.3289 - 0.3674j,-0.2933 + - 2.3781j,-2.4316 + 0.2169j, 0.1370 + 2.4778j, 2.5165 - 0.0541j, 0.0314 + - 2.5599j,-2.6085 - 0.1201j,-0.2118 + 2.6496j, 2.6819 + 0.3057j, 0.4032 + - 2.7181j,-2.7604 - 0.5052j,-0.6097 + 2.7952j, 2.8196 + 0.7155j, 0.8257 + - 2.8472j,-2.8814 - 0.9421j,-1.0608 + 2.9083j, 2.9235 + 1.1796j, 1.3035 + - 2.9407j,-2.9648 - 1.4358j,-1.5705 + 2.9820j, 2.9863 + 1.7038j, 1.8430 + - 2.9910j,-3.0027 - 1.9930j,-2.1461 + 3.0078j, 2.9988 + 2.2962j, 2.4527 + - 2.9886j,-2.9849 - 2.6231j,-2.7977 + 2.9749j, 2.9497 + 2.9679j, 3.1448 + - 2.9214j,-2.8985 - 3.3394j,-3.5403 + 2.8692j, 2.8239 + 3.7352j, 3.9374 + - 2.7730j,-2.7258 - 4.1619j,-4.3958 + 2.6715j, 2.6001 + 4.6228j, 4.8579 + - 2.5204j,-2.4414 - 5.1213j,-5.3988 + 2.3536j, 2.2471 + 5.6694j, 5.9499 + - 2.1289j,-2.0065 - 6.2670j,-6.6056 + 1.8717j, 1.7156 + 6.9393j, 7.2870 + - 1.5427j,-1.3575 - 7.6836j,-8.1142 + 1.1528j, 0.9212 + 8.5461j, 9.0016 + - 0.6640j,-0.3802 - 9.5270j,10.1094 + 0.0620j,-0.2958 + 10.7103j,11.3586 + + 0.6978j, 1.1560 - 12.1183j,12.9856 - 1.6826j,-2.2839 + 13.9218j,14.9722 + + 2.9782j, 3.8038 - 16.2383j,17.7577 - 4.7971j,-5.9920 + 19.5370j,21.6829 + + 7.4594j, 9.3348 - 24.4225j,28.1470 - 11.8617j,15.4831 + 33.5314j,40.9709 + + 20.6230j,26.6688 - 48.8079j,52.0219 - 30.7484j,28.2403 + 44.2950j,23.3522 + + 16.0214j,-3.8869 + 5.2747j,30.8124 + 24.3519j,37.7829 - 44.6248j,45.5825 + - 41.3136j,37.7025 + 38.8773j,30.6655 + 31.8158j,26.8368 - 24.1739j,19.7007 + - 23.4135j,21.0374 + 16.5218j,14.0970 + 19.2534j,17.8348 - 12.1558j,10.5339 + - 16.6349j,15.6016 + 9.1571j, 8.0025 + 14.7531j,14.0496 - 7.0180j,-6.1378 + - 13.4003j,12.7899 + 5.3438j, 4.6462 + 12.2684j,11.8264 - 4.0280j,-3.4572 + - 11.3969j,10.9712 + 2.9277j, 2.4483 + 10.5981j,10.2775 - 2.0116j,-1.6020 + - 9.9561j,-9.6259 + 1.2172j, 0.8612 + 9.3302j, 9.0735 - 0.5295j,-0.2163 + - 8.8117j,-8.5362 - 0.0786j,-0.3561 + 8.2845j, 8.0638 + 0.6197j, 0.8691 + - 7.8372j,-7.5953 - 1.1029j,-1.3255 + 7.3701j, 7.1703 + 1.5410j, 1.7448 + - 6.9655j,-6.7452 - 1.9337j,-2.1150 + 6.5365j, 6.3493 + 2.2938j, 2.4627 + - 6.1581j,-5.9524 - 2.6167j,-2.7650 + 5.7545j, 5.5747 + 2.9141j, 3.0547 + - 5.3922j,-5.1967 - 3.1801j,-3.3007 + 5.0061j, 4.8306 + 3.4243j, 3.5409 + - 4.6538j,-4.4656 - 3.6420j,-3.7384 + 4.2804j, 4.1076 + 3.8393j, 3.9345 + - 3.9345j,-3.7519 - 4.0141j,-4.0887 + 3.5709j, 3.3999 + 4.1688j, 4.2445 + - 3.2294j,-3.0514 - 4.3046j,-4.3591 + 2.8742j, 2.7047 + 4.4197j, 4.4769 + - 2.5361j,-2.3622 - 4.5189j,-4.5547 + 2.1885j, 2.0207 + 4.5966j, 4.6361 + - 1.8540j,-1.6839 - 4.6609j,-4.6790 + 1.5140j, 1.3482 + 4.7029j, 4.7252 + - 1.1836j,-1.0173 - 4.7335j,-4.7347 + 0.8515j, 0.6884 + 4.7411j, 4.7465 + - 0.5264j,-0.3642 - 4.7389j,-4.7239 + 0.2030j, 0.0434 + 4.7133j, 4.7021 + + 0.1154j, 0.2730 - 4.6788j,-4.6481 - 0.4290j,-0.5844 + 4.6211j, 4.5934 + + 0.7391j, 0.8915 - 4.5546j,-4.5088 - 1.0416j,-1.1917 + 4.4659j, 4.4220 + + 1.3414j, 1.4877 - 4.3679j,-4.3074 - 1.6313j,-1.7754 + 4.2492j, 4.1893 + + 1.9189j, 2.0580 - 4.1200j,-4.0452 - 2.1942j,-2.3315 + 3.9723j, 3.8968 + + 2.4676j, 2.5985 - 3.8124j,-3.7237 - 2.7264j,-2.8561 + 3.6366j, 3.5461 + + 2.9838j, 3.1047 - 3.4467j,-3.3444 - 3.2235j,-3.3448 + 3.2438j, 3.1387 + + 3.4630j, 3.5729 - 3.0251j,-2.9091 - 3.6809j,-3.7913 + 2.7939j, 2.6757 + + 3.9000j, 4.0096 - 2.5563j,-2.4240 - 4.1010j,-4.0498 + 2.2128j, 1.8310 + + 3.6375j, 2.7604 - 1.2746j,-0.6875 - 1.6313j,-0.6705 + 0.2563j, 0.0515 + + 0.1497j, 0.0019 - 0.0006j, 0.0015 + 0.0056j, 0.0078 - 0.0018j,-0.0011 + - 0.0057j, 0.0080 - 0.0013j,-0.0010 - 0.0077j, 0.0073 - 0.0007j,-0.0005 + - 0.0080j, 0.0065 - 0.0002j, 0.0000 - 0.0078j, 0.0057 + 0.0002j, 0.0006 + - 0.0076j, 0.0050 + 0.0005j, 0.0010 - 0.0073j, 0.0044 + 0.0008j, 0.0015 + - 0.0071j, 0.0038 + 0.0009j, 0.0019 - 0.0068j, 0.0032 + 0.0010j, 0.0023 + - 0.0065j, 0.0027 + 0.0011j, 0.0027 - 0.0062j, 0.0022 + 0.0011j, 0.0031 + - 0.0059j, 0.0018 + 0.0010j, 0.0034 - 0.0056j, 0.0014 + 0.0009j, 0.0037 + - 0.0052j, 0.0010 + 0.0008j, 0.0040 - 0.0049j, 0.0007 + 0.0006j, 0.0042 + - 0.0045j, 0.0004 + 0.0004j, 0.0044 - 0.0042j, 0.0002 + 0.0002j, 0.0046 + - 0.0038j,-0.0001 - 0.0001j, 0.0047 - 0.0034j,-0.0002 - 0.0003j, 0.0048 + - 0.0030j,-0.0003 - 0.0006j, 0.0049 - 0.0026j,-0.0004 - 0.0009j, 0.0049 + - 0.0022j,-0.0005 - 0.0012j, 0.0049 - 0.0018j,-0.0005 - 0.0015j, 0.0048 + - 0.0014j,-0.0004 - 0.0017j, 0.0047 - 0.0010j,-0.0004 - 0.0020j, 0.0046 + - 0.0007j,-0.0003 - 0.0023j, 0.0044 - 0.0004j,-0.0001 - 0.0025j, 0.0043 + - 0.0001j, 0.0001 - 0.0027j, 0.0040 + 0.0002j, 0.0003 - 0.0029j, 0.0038 + + 0.0005j, 0.0005 - 0.0030j, 0.0035 + 0.0007j, 0.0007 - 0.0032j, 0.0033 + + 0.0009j, 0.0010 - 0.0033j, 0.0030 + 0.0010j, 0.0012 - 0.0033j, 0.0027 + + 0.0011j, 0.0015 - 0.0033j, 0.0024 + 0.0012j, 0.0018 - 0.0033j, 0.0021 + + 0.0012j, 0.0021 - 0.0033j, 0.0018 + 0.0012j, 0.0023 - 0.0032j, 0.0015 + + 0.0012j, 0.0026 - 0.0031j, 0.0012 + 0.0011j, 0.0029 - 0.0030j, 0.0010 + + 0.0010j, 0.0031 - 0.0028j, 0.0007 + 0.0009j, 0.0033 - 0.0026j, 0.0005 + + 0.0007j, 0.0035 - 0.0024j, 0.0003 + 0.0005j, 0.0036 - 0.0022j, 0.0002 + + 0.0003j, 0.0038 - 0.0019j, 0.0001 + 0.0001j, 0.0039 - 0.0016j,-0.0000 + - 0.0001j, 0.0039 - 0.0014j,-0.0001 - 0.0003j, 0.0040 - 0.0011j,-0.0001 + - 0.0006j, 0.0040 - 0.0008j,-0.0001 - 0.0008j, 0.0039 - 0.0005j,-0.0001 + - 0.0011j, 0.0039 - 0.0002j,-0.0000 - 0.0013j, 0.0038 + 0.0000j, 0.0001 + - 0.0015j, 0.0037 + 0.0003j, 0.0002 - 0.0017j, 0.0035 + 0.0005j, 0.0003 + - 0.0019j, 0.0033 + 0.0007j, 0.0005 - 0.0020j, 0.0032 + 0.0009j, 0.0007 + - 0.0022j, 0.0029 + 0.0010j, 0.0009 - 0.0023j, 0.0027 + 0.0012j, 0.0011 + - 0.0024j, 0.0025 + 0.0013j, 0.0014 - 0.0024j, 0.0022 + 0.0013j, 0.0016 + - 0.0024j, 0.0020 + 0.0014j, 0.0018 - 0.0024j, 0.0017 + 0.0014j, 0.0021 + - 0.0024j, 0.0015 + 0.0014j, 0.0023 - 0.0023j, 0.0013 + 0.0013j, 0.0025 + - 0.0022j, 0.0010 + 0.0012j, 0.0027 - 0.0021j, 0.0008 + 0.0011j, 0.0029 + - 0.0020j, 0.0006 + 0.0010j, 0.0031 - 0.0018j, 0.0005 + 0.0009j, 0.0033 + - 0.0016j, 0.0003 + 0.0007j, 0.0034 - 0.0014j, 0.0002 + 0.0005j, 0.0035 + - 0.0012j, 0.0001 + 0.0003j, 0.0036 - 0.0009j, 0.0000 + 0.0001j, 0.0036 + - 0.0007j,-0.0000 - 0.0001j, 0.0036 - 0.0004j,-0.0000 - 0.0004j, 0.0036 + - 0.0002j,-0.0000 - 0.0006j, 0.0036 + 0.0001j, 0.0000 - 0.0008j, 0.0035 + + 0.0003j, 0.0001 - 0.0010j, 0.0034 + 0.0005j, 0.0002 - 0.0012j, 0.0033 + + 0.0007j, 0.0004 - 0.0014j, 0.0032 + 0.0009j, 0.0005 - 0.0015j, 0.0030 + + 0.0011j, 0.0007 - 0.0017j, 0.0028 + 0.0013j, 0.0009 - 0.0018j, 0.0026 + + 0.0014j, 0.0011 - 0.0019j, 0.0024 + 0.0015j, 0.0013 - 0.0019j, 0.0022 + + 0.0016j, 0.0015 - 0.0020j, 0.0019 + 0.0016j, 0.0017 - 0.0020j, 0.0017 + + 0.0016j, 0.0020 - 0.0019j, 0.0015 + 0.0016j, 0.0022 - 0.0019j, 0.0013 + + 0.0016j, 0.0024 - 0.0018j, 0.0011 + 0.0015j, 0.0026 - 0.0017j, 0.0008 + + 0.0014j, 0.0028 - 0.0016j, 0.0007 + 0.0013j, 0.0030 - 0.0014j, 0.0005 + + 0.0012j, 0.0031 - 0.0012j, 0.0003 + 0.0010j, 0.0033 - 0.0010j, 0.0002 + + 0.0008j, 0.0034 - 0.0008j, 0.0001 + 0.0006j, 0.0035 - 0.0006j, 0.0001 + + 0.0004j, 0.0035 - 0.0004j, 0.0000 + 0.0002j, 0.0036 - 0.0001j]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 184] + rotation: 0 + state: disabled +- name: ferror + id: variable + parameters: + comment: '' + value: (samp_rate*fine_freq)/(2*pi*interpolatedHsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1077, 302] + rotation: 0 + state: true +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [592, 224] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: '[-6.13e-05-1.22e-05j, + + 6.18e-04-2.02e-04j, + + 3.84e-03-2.43e-03j, + + 5.50e-03-3.87e-03j, + + 7.65e-03-5.51e-03j, + + 8.36e-03-6.47e-03j, + + 3.42e-03-3.78e-03j, + + -7.81e-03+2.35e-03j, + + -3.86e-02+2.21e-02j, + + -8.12e-02+4.68e-02j, + + -1.62e-01+9.94e-02j, + + -2.48e-01+1.48e-01j, + + -3.92e-01+2.43e-01j, + + -5.04e-01+2.99e-01j, + + -7.22e-01+4.49e-01j, + + -6.65e-01+3.56e-01j, + + 7.83e-01-4.68e-01j, + + 6.76e-01-3.60e-01j, + + 5.19e-01-2.92e-01j, + + 3.70e-01-1.98e-01j, + + 2.48e-01-1.39e-01j, + + 1.48e-01-8.02e-02j, + + 7.74e-02-4.50e-02j, + + 3.09e-02-1.83e-02j, + + 4.68e-03-4.89e-03j, + + -6.43e-03+1.92e-03j, + + -9.85e-03+4.10e-03j, + + -8.23e-03+3.73e-03j, + + -5.86e-03+2.73e-03j, + + -3.57e-03+1.94e-03j, + + -1.81e-04+2.41e-04j, + + ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [976, 185] + rotation: 0 + state: enabled +- name: filtro_ecualizador_viejo + id: variable + parameters: + comment: '' + value: '[ 3.5209e-07 - 1.0836e-06*1j, 1.4076e-06 - 2.3919e-06*1j, 5.9650e-06 + - 6.1506e-06*1j, 1.5271e-05 - 1.4326e-05*1j, 4.1151e-05 - 3.6713e-05*1j , + 3.9905e-04 - 6.3391e-04*1j, 1.4256e-03 - 4.2010e-04*1j, 1.7775e-03 - 1.1448e-03*1j, 2.6252e-03 + - 8.9501e-04*1j, 2.9812e-03 - 1.6801e-03*1j , 4.3656e-03 - 1.5903e-03*1j, 4.8418e-03 + - 2.4404e-03*1j, 6.9685e-03 - 2.6534e-03*1j, 7.6915e-03 - 3.5182e-03*1j, 1.0749e-02 + - 4.2291e-03*1j , 1.1902e-02 - 5.0055e-03*1j, 1.6024e-02 - 6.4526e-03*1j, 1.7878e-02 + - 7.0057e-03*1j, 2.3102e-02 - 9.4388e-03*1j, 2.6038e-02 - 9.6422e-03*1j , + 3.2280e-02 - 1.3269e-02*1j, 3.6789e-02 - 1.3061e-02*1j, 4.3841e-02 - 1.7982e-02*1j, 5.0495e-02 + - 1.7431e-02*1j, 5.8052e-02 - 2.3569e-02*1j , 6.7444e-02 - 2.2930e-02*1j, 7.5169e-02 + - 2.9981e-02*1j, 8.7819e-02 - 2.9736e-02*1j, 9.5427e-02 - 3.7136e-02*1j, 1.1167e-01 + - 3.8000e-02*1j , 1.1904e-01 - 4.4941e-02*1j, 1.3890e-01 - 4.7822e-02*1j, 1.4617e-01 + - 5.3309e-02*1j, 1.6926e-01 - 5.9221e-02*1j, 1.7695e-01 - 6.2182e-02*1j , + 2.0235e-01 - 7.2116e-02*1j, 2.1140e-01 - 7.1549e-02*1j, 2.3765e-01 - 8.6305e-02*1j, 2.4944e-01 + - 8.1456e-02*1j, 2.7453e-01 - 1.0146e-01*1j , 2.9088e-01 - 9.2017e-02*1j, 3.1227e-01 + - 1.1711e-01*1j, 3.3535e-01 - 1.0341e-01*1j, 3.5009e-01 - 1.3267e-01*1j, 3.8238e-01 + - 1.1587e-01*1j , 3.8713e-01 - 1.4742e-01*1j, 4.3146e-01 - 1.2974e-01*1j, 4.2233e-01 + - 1.6044e-01*1j, 4.8222e-01 - 1.4561e-01*1j, 4.5414e-01 - 1.7040e-01*1j , + 5.3510e-01 - 1.6460e-01*1j, 4.8020e-01 - 1.7358e-01*1j, 5.9455e-01 - 1.9170e-01*1j, 4.8669e-01 + - 1.5965e-01*1j, 6.9081e-01 - 2.6218e-01*1j , 3.1530e-01 + 9.3424e-02*1j, -7.1052e-01 + + 2.8833e-01*1j, -5.1861e-01 + 1.1433e-01*1j, -5.7535e-01 + 2.2141e-01*1j, -5.2124e-01 + + 1.3015e-01*1j , -5.1574e-01 + 1.9092e-01*1j, -4.9507e-01 + 1.3022e-01*1j, + -4.6700e-01 + 1.6704e-01*1j, -4.5921e-01 + 1.2586e-01*1j, -4.2136e-01 + 1.4550e-01*1j + , -4.1873e-01 + 1.1899e-01*1j, -3.7785e-01 + 1.2562e-01*1j, -3.7593e-01 + 1.1045e-01*1j, + -3.3620e-01 + 1.0737e-01*1j, -3.3244e-01 + 1.0068e-01*1j , -2.9648e-01 + 9.0865e-02*1j, + -2.8954e-01 + 9.0026e-02*1j, -2.5879e-01 + 7.6211e-02*1j, -2.4833e-01 + 7.8847e-02*1j, + -2.2331e-01 + 6.3414e-02*1j , -2.0968e-01 + 6.7517e-02*1j, -1.9019e-01 + 5.2395e-02*1j, + -1.7425e-01 + 5.6423e-02*1j, -1.5960e-01 + 4.2999e-02*1j, -1.4246e-01 + 4.5930e-02*1j + , -1.3169e-01 + 3.5031e-02*1j, -1.1454e-01 + 3.6352e-02*1j, -1.0661e-01 + 2.8282e-02*1j, + -9.0505e-02 + 2.7922e-02*1j, -8.4485e-02 + 2.2562e-02*1j , -7.0222e-02 + 2.0778e-02*1j, + -6.5365e-02 + 1.7714e-02*1j, -5.3441e-02 + 1.4956e-02*1j, -4.9242e-02 + 1.3619e-02*1j, + -3.9832e-02 + 1.0400e-02*1j , -3.6019e-02 + 1.0195e-02*1j, -2.9025e-02 + 6.9842e-03*1j, + -2.5513e-02 + 7.3869e-03*1j, -2.0639e-02 + 4.5335e-03*1j, -1.7457e-02 + 5.1469e-03*1j + , -1.4300e-02 + 2.8536e-03*1j, -1.1520e-02 + 3.4260e-03*1j, -9.6508e-03 + 1.7541e-03*1j, + -7.3304e-03 + 2.1628e-03*1j, -6.3552e-03 + 1.0661e-03*1j , -4.5025e-03 + 1.2798e-03*1j, + -4.1002e-03 + 6.5174e-04*1j, -2.6663e-03 + 6.8397e-04*1j, -2.5965e-03 + 4.0387e-04*1j, + -1.4935e-03 + 2.7171e-04*1j , -1.6079e-03 + 2.1239e-04*1j, 8.5832e-05 + 6.1758e-05*1j, 2.4841e-05 + + 1.8521e-05*1j, 9.8862e-06 + 7.4457e-06*1j, 3.4696e-06 + 2.6799e-06*1j , + 7.2346e-07 + 6.5333e-07*1j ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [979, 246] + rotation: 0 + state: disabled +- name: fine_freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Sine multiply Freq correction + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '-50000' + step: '0.1' + stop: '50000' + value: '19215.22' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [972, 5] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [229, 132] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 7] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [622, 116] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 64] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '-1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 6] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [136, 64] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [222, 8] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [137, 116] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [242, 1191] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [349, 773] + rotation: 0 + state: enabled +- name: analog_sig_source_x_0_0 + id: analog_sig_source_x + parameters: + affinity: '' + alias: '' + amp: '1' + comment: '' + freq: -fine_freq + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + phase: '0' + samp_rate: samp_rate + type: complex + waveform: analog.GR_COS_WAVE + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [937, 705] + rotation: 0 + state: enabled +- name: blocks_complex_to_arg_0 + id: blocks_complex_to_arg + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1059, 396] + rotation: 0 + state: disabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1174, 908] + rotation: 0 + state: disabled +- name: blocks_complex_to_real_0 + id: blocks_complex_to_real + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1168, 637] + rotation: 0 + state: enabled +- name: blocks_delay_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [820, 680] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [937, 906] + rotation: 0 + state: disabled +- name: blocks_delay_1 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [603, 554] + rotation: 90 + state: disabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/test2_19980KHz_1920_1080.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [69, 626] + rotation: 0 + state: disabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1424, 1113] + rotation: 270 + state: enabled +- name: blocks_multiply_conjugate_cc_0 + id: blocks_multiply_conjugate_cc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [576, 374] + rotation: 90 + state: disabled +- name: blocks_multiply_xx_0_0 + id: blocks_multiply_xx + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_inputs: '2' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1239, 688] + rotation: 0 + state: enabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [271, 650] + rotation: 0 + state: disabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 141] + rotation: 0 + state: true +- name: interp_fir_filter_xxx_1 + id: interp_fir_filter_xxx + parameters: + affinity: '' + alias: '' + comment: '' + interp: '1' + maxoutbuf: '0' + minoutbuf: '0' + samp_delay: '0' + taps: filtro_ecualizador_1st + type: ccc + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [721, 726] + rotation: 0 + state: bypassed +- name: qtgui_time_sink_x_0 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'True' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@0 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: '1024' + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '""' + type: float + update_time: '0.5' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Phase difference (rad). + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1341, 496] + rotation: 0 + state: disabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '19.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [490, 1022] + rotation: 90 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [441, 1471] + rotation: 180 + state: enabled +- name: single_pole_iir_filter_xx_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: '0.001' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 392] + rotation: 0 + state: disabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [353, 8] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [325, 1201] + rotation: 90 + state: enabled +- name: tempest_fine_sampling_synchronization_0 + id: tempest_fine_sampling_synchronization + parameters: + Htotal: interpolatedHsize + Vtotal: Vsize + affinity: '' + alias: '' + comment: '' + correct_sampling: '1' + max_deviation: 10.0/interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + update_proba: 1.2e-2/(interpolatedHsize*Vsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [645, 791] + rotation: 0 + state: disabled +- name: tempest_infer_screen_resolution_1 + id: tempest_infer_screen_resolution + parameters: + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 1102] + rotation: 0 + state: disabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1400, 924] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [772, 590] + rotation: 0 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [706, 950] + rotation: 0 + state: disabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs_enb0: '""' + dc_offs_enb1: '""' + dc_offs_enb10: '""' + dc_offs_enb11: '""' + dc_offs_enb12: '""' + dc_offs_enb13: '""' + dc_offs_enb14: '""' + dc_offs_enb15: '""' + dc_offs_enb16: '""' + dc_offs_enb17: '""' + dc_offs_enb18: '""' + dc_offs_enb19: '""' + dc_offs_enb2: '""' + dc_offs_enb20: '""' + dc_offs_enb21: '""' + dc_offs_enb22: '""' + dc_offs_enb23: '""' + dc_offs_enb24: '""' + dc_offs_enb25: '""' + dc_offs_enb26: '""' + dc_offs_enb27: '""' + dc_offs_enb28: '""' + dc_offs_enb29: '""' + dc_offs_enb3: '""' + dc_offs_enb30: '""' + dc_offs_enb31: '""' + dc_offs_enb4: '""' + dc_offs_enb5: '""' + dc_offs_enb6: '""' + dc_offs_enb7: '""' + dc_offs_enb8: '""' + dc_offs_enb9: '""' + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + iq_imbal_enb0: '""' + iq_imbal_enb1: '""' + iq_imbal_enb10: '""' + iq_imbal_enb11: '""' + iq_imbal_enb12: '""' + iq_imbal_enb13: '""' + iq_imbal_enb14: '""' + iq_imbal_enb15: '""' + iq_imbal_enb16: '""' + iq_imbal_enb17: '""' + iq_imbal_enb18: '""' + iq_imbal_enb19: '""' + iq_imbal_enb2: '""' + iq_imbal_enb20: '""' + iq_imbal_enb21: '""' + iq_imbal_enb22: '""' + iq_imbal_enb23: '""' + iq_imbal_enb24: '""' + iq_imbal_enb25: '""' + iq_imbal_enb26: '""' + iq_imbal_enb27: '""' + iq_imbal_enb28: '""' + iq_imbal_enb29: '""' + iq_imbal_enb3: '""' + iq_imbal_enb30: '""' + iq_imbal_enb31: '""' + iq_imbal_enb4: '""' + iq_imbal_enb5: '""' + iq_imbal_enb6: '""' + iq_imbal_enb7: '""' + iq_imbal_enb8: '""' + iq_imbal_enb9: '""' + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + norm_gain0: 'False' + norm_gain1: 'False' + norm_gain10: 'False' + norm_gain11: 'False' + norm_gain12: 'False' + norm_gain13: 'False' + norm_gain14: 'False' + norm_gain15: 'False' + norm_gain16: 'False' + norm_gain17: 'False' + norm_gain18: 'False' + norm_gain19: 'False' + norm_gain2: 'False' + norm_gain20: 'False' + norm_gain21: 'False' + norm_gain22: 'False' + norm_gain23: 'False' + norm_gain24: 'False' + norm_gain25: 'False' + norm_gain26: 'False' + norm_gain27: 'False' + norm_gain28: 'False' + norm_gain29: 'False' + norm_gain3: 'False' + norm_gain30: 'False' + norm_gain31: 'False' + norm_gain4: 'False' + norm_gain5: 'False' + norm_gain6: 'False' + norm_gain7: 'False' + norm_gain8: 'False' + norm_gain9: 'False' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [83, 741] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1400, 1258] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [FFT_autocorrelation_0_0, '0', tempest_infer_screen_resolution_1, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_delay_1, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_multiply_conjugate_cc_0, '0'] +- [Keep_1_in_N_Frames_0, '0', interp_fir_filter_xxx_1, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_fine_sampling_synchronization_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [analog_sig_source_x_0_0, '0', blocks_multiply_xx_0_0, '1'] +- [blocks_complex_to_arg_0, '0', qtgui_time_sink_x_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_complex_to_real_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0, '0', blocks_multiply_xx_0_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_delay_1, '0', blocks_multiply_conjugate_cc_0, '1'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [blocks_multiply_conjugate_cc_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_multiply_xx_0_0, '0', blocks_complex_to_real_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0, '0'] +- [interp_fir_filter_xxx_1, '0', tempest_sync_detector_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [single_pole_iir_filter_xx_0, '0', blocks_complex_to_arg_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_fine_sampling_synchronization_0, + en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_fft_peak_fine_sampling_sync_0_0, ratio, tempest_fine_sampling_synchronization_0, + ratio] +- [tempest_fine_sampling_synchronization_0, '0', tempest_sync_detector_0_0, '0'] +- [tempest_infer_screen_resolution_1, '0', qtgui_time_sink_x_1, '0'] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0, '0', blocks_delay_0, '0'] +- [tempest_sync_detector_0_0, '0', blocks_delay_0_0, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 diff --git a/examples/Demo/InferScreenResolution_50MSps_300MHzCentral.grc b/examples/Demo/InferScreenResolution_50MSps_300MHzCentral.grc new file mode 100644 index 0000000..b8a9b42 --- /dev/null +++ b/examples/Demo/InferScreenResolution_50MSps_300MHzCentral.grc @@ -0,0 +1,705 @@ +options: + parameters: + author: '' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [52, 17] + rotation: 0 + state: enabled + +blocks: +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 427] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [296, 37] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [439, 37] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [192, 102] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Harmonic + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [54, 214] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [192, 172] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: refr + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: '100' + value: '60' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [53, 97] + rotation: 0 + state: true +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [192, 35] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [640, 371] + rotation: 0 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: fft_size + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [425, 363] + rotation: 0 + state: enabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: '' + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '15.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 476] + rotation: 270 + state: enabled +- name: tempest_infer_screen_resolution_0 + id: tempest_infer_screen_resolution + parameters: + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 363] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs_enb0: '""' + dc_offs_enb1: '""' + dc_offs_enb10: '""' + dc_offs_enb11: '""' + dc_offs_enb12: '""' + dc_offs_enb13: '""' + dc_offs_enb14: '""' + dc_offs_enb15: '""' + dc_offs_enb16: '""' + dc_offs_enb17: '""' + dc_offs_enb18: '""' + dc_offs_enb19: '""' + dc_offs_enb2: '""' + dc_offs_enb20: '""' + dc_offs_enb21: '""' + dc_offs_enb22: '""' + dc_offs_enb23: '""' + dc_offs_enb24: '""' + dc_offs_enb25: '""' + dc_offs_enb26: '""' + dc_offs_enb27: '""' + dc_offs_enb28: '""' + dc_offs_enb29: '""' + dc_offs_enb3: '""' + dc_offs_enb30: '""' + dc_offs_enb31: '""' + dc_offs_enb4: '""' + dc_offs_enb5: '""' + dc_offs_enb6: '""' + dc_offs_enb7: '""' + dc_offs_enb8: '""' + dc_offs_enb9: '""' + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + iq_imbal_enb0: '""' + iq_imbal_enb1: '""' + iq_imbal_enb10: '""' + iq_imbal_enb11: '""' + iq_imbal_enb12: '""' + iq_imbal_enb13: '""' + iq_imbal_enb14: '""' + iq_imbal_enb15: '""' + iq_imbal_enb16: '""' + iq_imbal_enb17: '""' + iq_imbal_enb18: '""' + iq_imbal_enb19: '""' + iq_imbal_enb2: '""' + iq_imbal_enb20: '""' + iq_imbal_enb21: '""' + iq_imbal_enb22: '""' + iq_imbal_enb23: '""' + iq_imbal_enb24: '""' + iq_imbal_enb25: '""' + iq_imbal_enb26: '""' + iq_imbal_enb27: '""' + iq_imbal_enb28: '""' + iq_imbal_enb29: '""' + iq_imbal_enb3: '""' + iq_imbal_enb30: '""' + iq_imbal_enb31: '""' + iq_imbal_enb4: '""' + iq_imbal_enb5: '""' + iq_imbal_enb6: '""' + iq_imbal_enb7: '""' + iq_imbal_enb8: '""' + iq_imbal_enb9: '""' + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + norm_gain0: 'False' + norm_gain1: 'False' + norm_gain10: 'False' + norm_gain11: 'False' + norm_gain12: 'False' + norm_gain13: 'False' + norm_gain14: 'False' + norm_gain15: 'False' + norm_gain16: 'False' + norm_gain17: 'False' + norm_gain18: 'False' + norm_gain19: 'False' + norm_gain2: 'False' + norm_gain20: 'False' + norm_gain21: 'False' + norm_gain22: 'False' + norm_gain23: 'False' + norm_gain24: 'False' + norm_gain25: 'False' + norm_gain26: 'False' + norm_gain27: 'False' + norm_gain28: 'False' + norm_gain29: 'False' + norm_gain3: 'False' + norm_gain30: 'False' + norm_gain31: 'False' + norm_gain4: 'False' + norm_gain5: 'False' + norm_gain6: 'False' + norm_gain7: 'False' + norm_gain8: 'False' + norm_gain9: 'False' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [129, 331] + rotation: 0 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_infer_screen_resolution_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [tempest_infer_screen_resolution_0, '0', qtgui_time_sink_x_1, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 diff --git a/examples/Demo/VGA_50MHzSps_300MHzCentral_Magnitude.grc b/examples/Demo/VGA_50MHzSps_300MHzCentral_Magnitude.grc new file mode 100644 index 0000000..23083e9 --- /dev/null +++ b/examples/Demo/VGA_50MHzSps_300MHzCentral_Magnitude.grc @@ -0,0 +1,1029 @@ +options: + parameters: + author: '' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [15, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1061, 35] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [859, 34] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 220] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [505, 34] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 156] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [656, 220] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 34] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 157] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 244] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 127] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 215] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 278] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 154] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '-1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [21, 235] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [332, 244] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [331, 126] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [225, 61] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [648, 809] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 470] + rotation: 0 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1336, 493] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1099, 491] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1501, 796] + rotation: 270 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [22, 185] + rotation: 0 + state: true +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '19.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [919, 798] + rotation: 270 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [925, 992] + rotation: 180 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [17, 92] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [757, 803] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1472, 578] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 473] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs_enb0: '""' + dc_offs_enb1: '""' + dc_offs_enb10: '""' + dc_offs_enb11: '""' + dc_offs_enb12: '""' + dc_offs_enb13: '""' + dc_offs_enb14: '""' + dc_offs_enb15: '""' + dc_offs_enb16: '""' + dc_offs_enb17: '""' + dc_offs_enb18: '""' + dc_offs_enb19: '""' + dc_offs_enb2: '""' + dc_offs_enb20: '""' + dc_offs_enb21: '""' + dc_offs_enb22: '""' + dc_offs_enb23: '""' + dc_offs_enb24: '""' + dc_offs_enb25: '""' + dc_offs_enb26: '""' + dc_offs_enb27: '""' + dc_offs_enb28: '""' + dc_offs_enb29: '""' + dc_offs_enb3: '""' + dc_offs_enb30: '""' + dc_offs_enb31: '""' + dc_offs_enb4: '""' + dc_offs_enb5: '""' + dc_offs_enb6: '""' + dc_offs_enb7: '""' + dc_offs_enb8: '""' + dc_offs_enb9: '""' + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + iq_imbal_enb0: '""' + iq_imbal_enb1: '""' + iq_imbal_enb10: '""' + iq_imbal_enb11: '""' + iq_imbal_enb12: '""' + iq_imbal_enb13: '""' + iq_imbal_enb14: '""' + iq_imbal_enb15: '""' + iq_imbal_enb16: '""' + iq_imbal_enb17: '""' + iq_imbal_enb18: '""' + iq_imbal_enb19: '""' + iq_imbal_enb2: '""' + iq_imbal_enb20: '""' + iq_imbal_enb21: '""' + iq_imbal_enb22: '""' + iq_imbal_enb23: '""' + iq_imbal_enb24: '""' + iq_imbal_enb25: '""' + iq_imbal_enb26: '""' + iq_imbal_enb27: '""' + iq_imbal_enb28: '""' + iq_imbal_enb29: '""' + iq_imbal_enb3: '""' + iq_imbal_enb30: '""' + iq_imbal_enb31: '""' + iq_imbal_enb4: '""' + iq_imbal_enb5: '""' + iq_imbal_enb6: '""' + iq_imbal_enb7: '""' + iq_imbal_enb8: '""' + iq_imbal_enb9: '""' + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + norm_gain0: 'False' + norm_gain1: 'False' + norm_gain10: 'False' + norm_gain11: 'False' + norm_gain12: 'False' + norm_gain13: 'False' + norm_gain14: 'False' + norm_gain15: 'False' + norm_gain16: 'False' + norm_gain17: 'False' + norm_gain18: 'False' + norm_gain19: 'False' + norm_gain2: 'False' + norm_gain20: 'False' + norm_gain21: 'False' + norm_gain22: 'False' + norm_gain23: 'False' + norm_gain24: 'False' + norm_gain25: 'False' + norm_gain26: 'False' + norm_gain27: 'False' + norm_gain28: 'False' + norm_gain29: 'False' + norm_gain3: 'False' + norm_gain30: 'False' + norm_gain31: 'False' + norm_gain4: 'False' + norm_gain5: 'False' + norm_gain6: 'False' + norm_gain7: 'False' + norm_gain8: 'False' + norm_gain9: 'False' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [240, 438] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1474, 1001] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0_0, '0', blocks_delay_0_0, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 diff --git a/examples/Demo/VGA_50MHzSps_300MHzCentral_Real.grc b/examples/Demo/VGA_50MHzSps_300MHzCentral_Real.grc new file mode 100644 index 0000000..861e7d4 --- /dev/null +++ b/examples/Demo/VGA_50MHzSps_300MHzCentral_Real.grc @@ -0,0 +1,1427 @@ +options: + parameters: + author: '' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [81, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [963, 571] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [766, 252] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [623, 168] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [350, 102] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [624, 64] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 178] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: Qt.Horizontal + rangeType: int + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 104] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 126] + rotation: 0 + state: enabled +- name: ferror + id: variable + parameters: + comment: '' + value: (samp_rate*fine_freq)/(2*pi*interpolatedHsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1114, 42] + rotation: 0 + state: true +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [592, 224] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: '[-6.13e-05-1.22e-05j, + + 6.18e-04-2.02e-04j, + + 3.84e-03-2.43e-03j, + + 5.50e-03-3.87e-03j, + + 7.65e-03-5.51e-03j, + + 8.36e-03-6.47e-03j, + + 3.42e-03-3.78e-03j, + + -7.81e-03+2.35e-03j, + + -3.86e-02+2.21e-02j, + + -8.12e-02+4.68e-02j, + + -1.62e-01+9.94e-02j, + + -2.48e-01+1.48e-01j, + + -3.92e-01+2.43e-01j, + + -5.04e-01+2.99e-01j, + + -7.22e-01+4.49e-01j, + + -6.65e-01+3.56e-01j, + + 7.83e-01-4.68e-01j, + + 6.76e-01-3.60e-01j, + + 5.19e-01-2.92e-01j, + + 3.70e-01-1.98e-01j, + + 2.48e-01-1.39e-01j, + + 1.48e-01-8.02e-02j, + + 7.74e-02-4.50e-02j, + + 3.09e-02-1.83e-02j, + + 4.68e-03-4.89e-03j, + + -6.43e-03+1.92e-03j, + + -9.85e-03+4.10e-03j, + + -8.23e-03+3.73e-03j, + + -5.86e-03+2.73e-03j, + + -3.57e-03+1.94e-03j, + + -1.81e-04+2.41e-04j, + + ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [975, 120] + rotation: 0 + state: enabled +- name: fine_freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Sine multiply Freq correction + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '-50000' + step: '0.1' + stop: '50000' + value: '19215.22' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [972, 5] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [207, 318] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 7] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [622, 116] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 64] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '-1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 6] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [68, 105] + rotation: 0 + state: enabled +- name: ratio_correct + id: variable + parameters: + comment: '' + value: (1.0/(1+0.000935)) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [157, 127] + rotation: 0 + state: true +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: Qt.Horizontal + rangeType: float + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [77, 317] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [73, 175] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [509, 1038] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [349, 773] + rotation: 0 + state: enabled +- name: analog_sig_source_x_0_0 + id: analog_sig_source_x + parameters: + affinity: '' + alias: '' + amp: '1' + comment: '' + freq: -fine_freq + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + phase: '0' + samp_rate: samp_rate + type: complex + waveform: analog.GR_COS_WAVE + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1147, 819] + rotation: 0 + state: disabled +- name: blocks_complex_to_arg_0 + id: blocks_complex_to_arg + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [787, 359] + rotation: 0 + state: disabled +- name: blocks_complex_to_real_0 + id: blocks_complex_to_real + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1563, 705] + rotation: 0 + state: disabled +- name: blocks_delay_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1164, 685] + rotation: 0 + state: disabled +- name: blocks_delay_1 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [512, 600] + rotation: 90 + state: disabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/DEMO_VGA_recording_1080p_60Hz_50MHz.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [69, 626] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1735, 1082] + rotation: 270 + state: disabled +- name: blocks_multiply_conjugate_cc_0 + id: blocks_multiply_conjugate_cc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [470, 392] + rotation: 90 + state: disabled +- name: blocks_multiply_xx_0_0 + id: blocks_multiply_xx + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_inputs: '2' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1385, 689] + rotation: 0 + state: disabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [271, 650] + rotation: 0 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [87, 242] + rotation: 0 + state: true +- name: interp_fir_filter_xxx_1 + id: interp_fir_filter_xxx + parameters: + affinity: '' + alias: '' + comment: '' + interp: '1' + maxoutbuf: '0' + minoutbuf: '0' + samp_delay: '0' + taps: filtro_ecualizador_1st + type: ccc + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [627, 665] + rotation: 0 + state: disabled +- name: qtgui_time_sink_x_0 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'True' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@0 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: '1024' + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '""' + type: float + update_time: '0.5' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Phase difference (rad). + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [963, 352] + rotation: 0 + state: disabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '20.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '3.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [756, 1022] + rotation: 270 + state: enabled +- name: single_pole_iir_filter_xx_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: '0.001' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [578, 355] + rotation: 0 + state: disabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [353, 8] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [599, 1018] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1711, 893] + rotation: 270 + state: disabled +- name: tempest_sync_detector_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 817] + rotation: 0 + state: disabled +- name: tempest_tempest_msgbtn_0 + id: tempest_tempest_msgbtn + parameters: + affinity: '' + alias: '' + comment: '' + gui_hint: tab_m@1 + label: 'Ratio Finder toggle ON or OFF (FFT peaks). ' + maxoutbuf: '0' + minoutbuf: '0' + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [282, 1084] + rotation: 270 + state: true +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs_enb0: '""' + dc_offs_enb1: '""' + dc_offs_enb10: '""' + dc_offs_enb11: '""' + dc_offs_enb12: '""' + dc_offs_enb13: '""' + dc_offs_enb14: '""' + dc_offs_enb15: '""' + dc_offs_enb16: '""' + dc_offs_enb17: '""' + dc_offs_enb18: '""' + dc_offs_enb19: '""' + dc_offs_enb2: '""' + dc_offs_enb20: '""' + dc_offs_enb21: '""' + dc_offs_enb22: '""' + dc_offs_enb23: '""' + dc_offs_enb24: '""' + dc_offs_enb25: '""' + dc_offs_enb26: '""' + dc_offs_enb27: '""' + dc_offs_enb28: '""' + dc_offs_enb29: '""' + dc_offs_enb3: '""' + dc_offs_enb30: '""' + dc_offs_enb31: '""' + dc_offs_enb4: '""' + dc_offs_enb5: '""' + dc_offs_enb6: '""' + dc_offs_enb7: '""' + dc_offs_enb8: '""' + dc_offs_enb9: '""' + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + iq_imbal_enb0: '""' + iq_imbal_enb1: '""' + iq_imbal_enb10: '""' + iq_imbal_enb11: '""' + iq_imbal_enb12: '""' + iq_imbal_enb13: '""' + iq_imbal_enb14: '""' + iq_imbal_enb15: '""' + iq_imbal_enb16: '""' + iq_imbal_enb17: '""' + iq_imbal_enb18: '""' + iq_imbal_enb19: '""' + iq_imbal_enb2: '""' + iq_imbal_enb20: '""' + iq_imbal_enb21: '""' + iq_imbal_enb22: '""' + iq_imbal_enb23: '""' + iq_imbal_enb24: '""' + iq_imbal_enb25: '""' + iq_imbal_enb26: '""' + iq_imbal_enb27: '""' + iq_imbal_enb28: '""' + iq_imbal_enb29: '""' + iq_imbal_enb3: '""' + iq_imbal_enb30: '""' + iq_imbal_enb31: '""' + iq_imbal_enb4: '""' + iq_imbal_enb5: '""' + iq_imbal_enb6: '""' + iq_imbal_enb7: '""' + iq_imbal_enb8: '""' + iq_imbal_enb9: '""' + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + norm_gain0: 'False' + norm_gain1: 'False' + norm_gain10: 'False' + norm_gain11: 'False' + norm_gain12: 'False' + norm_gain13: 'False' + norm_gain14: 'False' + norm_gain15: 'False' + norm_gain16: 'False' + norm_gain17: 'False' + norm_gain18: 'False' + norm_gain19: 'False' + norm_gain2: 'False' + norm_gain20: 'False' + norm_gain21: 'False' + norm_gain22: 'False' + norm_gain23: 'False' + norm_gain24: 'False' + norm_gain25: 'False' + norm_gain26: 'False' + norm_gain27: 'False' + norm_gain28: 'False' + norm_gain29: 'False' + norm_gain3: 'False' + norm_gain30: 'False' + norm_gain31: 'False' + norm_gain4: 'False' + norm_gain5: 'False' + norm_gain6: 'False' + norm_gain7: 'False' + norm_gain8: 'False' + norm_gain9: 'False' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [82, 742] + rotation: 0 + state: disabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1711, 1227] + rotation: 270 + state: disabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_delay_1, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_multiply_conjugate_cc_0, '0'] +- [Keep_1_in_N_Frames_0, '0', interp_fir_filter_xxx_1, '0'] +- [analog_sig_source_x_0_0, '0', blocks_multiply_xx_0_0, '1'] +- [blocks_complex_to_arg_0, '0', qtgui_time_sink_x_0, '0'] +- [blocks_complex_to_real_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0, '0', blocks_multiply_xx_0_0, '0'] +- [blocks_delay_1, '0', blocks_multiply_conjugate_cc_0, '1'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [blocks_multiply_conjugate_cc_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_multiply_xx_0_0, '0', blocks_complex_to_real_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0, '0'] +- [interp_fir_filter_xxx_1, '0', tempest_sync_detector_0, '0'] +- [single_pole_iir_filter_xx_0, '0', blocks_complex_to_arg_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0, '0', blocks_delay_0, '0'] +- [tempest_tempest_msgbtn_0, pressed, tempest_fft_peak_fine_sampling_sync_0_0, en] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 diff --git a/examples/EQtaps1080p.txt b/examples/EQtaps1080p.txt new file mode 100644 index 0000000..acb9afc --- /dev/null +++ b/examples/EQtaps1080p.txt @@ -0,0 +1,512 @@ +-0.0004 + 0j +-0.0000 + 0.0000j +-0.0004 - 0.0000j +-0.0000 + 0.0001j +-0.0004 - 0.0001j +-0.0000 + 0.0001j +-0.0004 - 0.0001j +-0.0000 + 0.0002j +-0.0004 - 0.0001j +-0.0001 + 0.0002j +-0.0003 - 0.0001j +-0.0001 + 0.0003j +-0.0003 - 0.0001j +-0.0002 + 0.0003j +-0.0003 - 0.0001j +-0.0002 + 0.0004j +-0.0002 - 0.0001j +-0.0002 + 0.0004j +-0.0002 - 0.0001j +-0.0003 + 0.0004j +-0.0001 - 0.0001j +-0.0003 + 0.0004j +-0.0001 - 0.0001j +-0.0004 + 0.0004j +-0.0000 - 0.0000j +-0.0004 + 0.0004j + 0.0000 + 0.0000j +-0.0005 + 0.0004j + 0.0000 + 0.0001j +-0.0005 + 0.0004j + 0.0001 + 0.0001j +-0.0006 + 0.0003j + 0.0001 + 0.0002j +-0.0006 + 0.0003j + 0.0001 + 0.0002j +-0.0006 + 0.0003j + 0.0001 + 0.0003j +-0.0006 + 0.0002j + 0.0001 + 0.0004j +-0.0006 + 0.0002j + 0.0001 + 0.0005j +-0.0006 + 0.0001j + 0.0001 + 0.0005j +-0.0006 + 0.0001j + 0.0001 + 0.0006j +-0.0006 + 0.0000j + 0.0000 + 0.0007j +-0.0006 - 0.0000j +-0.0000 + 0.0008j +-0.0005 - 0.0000j +-0.0001 + 0.0008j +-0.0005 - 0.0001j +-0.0002 + 0.0009j +-0.0004 - 0.0001j +-0.0002 + 0.0009j +-0.0004 - 0.0001j +-0.0003 + 0.0010j +-0.0003 - 0.0001j +-0.0004 + 0.0010j +-0.0002 - 0.0001j +-0.0005 + 0.0010j +-0.0002 - 0.0001j +-0.0006 + 0.0011j +-0.0001 - 0.0001j +-0.0007 + 0.0011j +-0.0000 - 0.0000j +-0.0008 + 0.0010j + 0.0000 + 0.0000j +-0.0009 + 0.0010j + 0.0001 + 0.0001j +-0.0010 + 0.0010j + 0.0002 + 0.0002j +-0.0011 + 0.0009j + 0.0002 + 0.0003j +-0.0011 + 0.0009j + 0.0003 + 0.0004j +-0.0012 + 0.0008j + 0.0003 + 0.0005j +-0.0013 + 0.0007j + 0.0003 + 0.0006j +-0.0013 + 0.0006j + 0.0003 + 0.0007j +-0.0014 + 0.0005j + 0.0003 + 0.0008j +-0.0014 + 0.0004j + 0.0003 + 0.0010j +-0.0014 + 0.0003j + 0.0002 + 0.0011j +-0.0014 + 0.0002j + 0.0002 + 0.0013j +-0.0015 + 0.0002j + 0.0001 + 0.0019j +-0.0038 + 0.0001j + 0.0001 + 0.0198j + 0.0603 + 0.0018j + 0.0091 - 0.1418j +-0.2643 - 0.0260j +-0.0543 + 0.4093j + 0.5602 + 0.0937j + 0.1441 - 0.7130j +-0.8669 - 0.2059j +-0.2777 + 1.0157j + 1.1535 + 0.3576j + 0.4438 - 1.2773j +-1.3776 - 0.5314j +-0.6122 + 1.4403j + 1.4636 + 0.6813j + 0.7425 - 1.4640j +-1.4577 - 0.8023j +-0.8613 + 1.4470j + 1.4300 + 0.9179j + 0.9747 - 1.4114j +-1.3954 - 1.0349j +-1.0955 + 1.3775j + 1.3531 + 1.1528j + 1.2096 - 1.3263j +-1.3019 - 1.2703j +-1.3319 + 1.2759j + 1.2436 + 1.3891j + 1.4451 - 1.2084j +-1.1749 - 1.5056j +-1.5673 + 1.1402j + 1.0995 + 1.6238j + 1.6782 - 1.0555j +-1.0126 - 1.7375j +-1.7986 + 0.9685j + 0.9189 + 1.8538j + 1.9057 - 0.8658j +-0.8130 - 1.9627j +-2.0224 + 0.7588j + 0.6998 + 2.0754j + 2.1239 - 0.6372j +-0.5739 - 2.1776j +-2.2347 + 0.5090j + 0.4399 + 2.2848j + 2.3289 - 0.3674j +-0.2933 - 2.3781j +-2.4316 + 0.2169j + 0.1370 + 2.4778j + 2.5165 - 0.0541j + 0.0314 - 2.5599j +-2.6085 - 0.1201j +-0.2118 + 2.6496j + 2.6819 + 0.3057j + 0.4032 - 2.7181j +-2.7604 - 0.5052j +-0.6097 + 2.7952j + 2.8196 + 0.7155j + 0.8257 - 2.8472j +-2.8814 - 0.9421j +-1.0608 + 2.9083j + 2.9235 + 1.1796j + 1.3035 - 2.9407j +-2.9648 - 1.4358j +-1.5705 + 2.9820j + 2.9863 + 1.7038j + 1.8430 - 2.9910j +-3.0027 - 1.9930j +-2.1461 + 3.0078j + 2.9988 + 2.2962j + 2.4527 - 2.9886j +-2.9849 - 2.6231j +-2.7977 + 2.9749j + 2.9497 + 2.9679j + 3.1448 - 2.9214j +-2.8985 - 3.3394j +-3.5403 + 2.8692j + 2.8239 + 3.7352j + 3.9374 - 2.7730j +-2.7258 - 4.1619j +-4.3958 + 2.6715j + 2.6001 + 4.6228j + 4.8579 - 2.5204j +-2.4414 - 5.1213j +-5.3988 + 2.3536j + 2.2471 + 5.6694j + 5.9499 - 2.1289j +-2.0065 - 6.2670j +-6.6056 + 1.8717j + 1.7156 + 6.9393j + 7.2870 - 1.5427j +-1.3575 - 7.6836j +-8.1142 + 1.1528j + 0.9212 + 8.5461j + 9.0016 - 0.6640j +-0.3802 - 9.5270j +10.1094 + 0.0620j +-0.2958 + 10.7103j +11.3586 + 0.6978j + 1.1560 - 12.1183j +12.9856 - 1.6826j +-2.2839 + 13.9218j +14.9722 + 2.9782j + 3.8038 - 16.2383j +17.7577 - 4.7971j +-5.9920 + 19.5370j +21.6829 + 7.4594j + 9.3348 - 24.4225j +28.1470 - 11.8617j +15.4831 + 33.5314j +40.9709 + 20.6230j +26.6688 - 48.8079j +52.0219 - 30.7484j +28.2403 + 44.2950j +23.3522 + 16.0214j +-3.8869 + 5.2747j +30.8124 + 24.3519j +37.7829 - 44.6248j +45.5825 - 41.3136j +37.7025 + 38.8773j +30.6655 + 31.8158j +26.8368 - 24.1739j +19.7007 - 23.4135j +21.0374 + 16.5218j +14.0970 + 19.2534j +17.8348 - 12.1558j +10.5339 - 16.6349j +15.6016 + 9.1571j + 8.0025 + 14.7531j +14.0496 - 7.0180j +-6.1378 - 13.4003j +12.7899 + 5.3438j + 4.6462 + 12.2684j +11.8264 - 4.0280j +-3.4572 - 11.3969j +10.9712 + 2.9277j + 2.4483 + 10.5981j +10.2775 - 2.0116j +-1.6020 - 9.9561j +-9.6259 + 1.2172j + 0.8612 + 9.3302j + 9.0735 - 0.5295j +-0.2163 - 8.8117j +-8.5362 - 0.0786j +-0.3561 + 8.2845j + 8.0638 + 0.6197j + 0.8691 - 7.8372j +-7.5953 - 1.1029j +-1.3255 + 7.3701j + 7.1703 + 1.5410j + 1.7448 - 6.9655j +-6.7452 - 1.9337j +-2.1150 + 6.5365j + 6.3493 + 2.2938j + 2.4627 - 6.1581j +-5.9524 - 2.6167j +-2.7650 + 5.7545j + 5.5747 + 2.9141j + 3.0547 - 5.3922j +-5.1967 - 3.1801j +-3.3007 + 5.0061j + 4.8306 + 3.4243j + 3.5409 - 4.6538j +-4.4656 - 3.6420j +-3.7384 + 4.2804j + 4.1076 + 3.8393j + 3.9345 - 3.9345j +-3.7519 - 4.0141j +-4.0887 + 3.5709j + 3.3999 + 4.1688j + 4.2445 - 3.2294j +-3.0514 - 4.3046j +-4.3591 + 2.8742j + 2.7047 + 4.4197j + 4.4769 - 2.5361j +-2.3622 - 4.5189j +-4.5547 + 2.1885j + 2.0207 + 4.5966j + 4.6361 - 1.8540j +-1.6839 - 4.6609j +-4.6790 + 1.5140j + 1.3482 + 4.7029j + 4.7252 - 1.1836j +-1.0173 - 4.7335j +-4.7347 + 0.8515j + 0.6884 + 4.7411j + 4.7465 - 0.5264j +-0.3642 - 4.7389j +-4.7239 + 0.2030j + 0.0434 + 4.7133j + 4.7021 + 0.1154j + 0.2730 - 4.6788j +-4.6481 - 0.4290j +-0.5844 + 4.6211j + 4.5934 + 0.7391j + 0.8915 - 4.5546j +-4.5088 - 1.0416j +-1.1917 + 4.4659j + 4.4220 + 1.3414j + 1.4877 - 4.3679j +-4.3074 - 1.6313j +-1.7754 + 4.2492j + 4.1893 + 1.9189j + 2.0580 - 4.1200j +-4.0452 - 2.1942j +-2.3315 + 3.9723j + 3.8968 + 2.4676j + 2.5985 - 3.8124j +-3.7237 - 2.7264j +-2.8561 + 3.6366j + 3.5461 + 2.9838j + 3.1047 - 3.4467j +-3.3444 - 3.2235j +-3.3448 + 3.2438j + 3.1387 + 3.4630j + 3.5729 - 3.0251j +-2.9091 - 3.6809j +-3.7913 + 2.7939j + 2.6757 + 3.9000j + 4.0096 - 2.5563j +-2.4240 - 4.1010j +-4.0498 + 2.2128j + 1.8310 + 3.6375j + 2.7604 - 1.2746j +-0.6875 - 1.6313j +-0.6705 + 0.2563j + 0.0515 + 0.1497j + 0.0019 - 0.0006j + 0.0015 + 0.0056j + 0.0078 - 0.0018j +-0.0011 - 0.0057j + 0.0080 - 0.0013j +-0.0010 - 0.0077j + 0.0073 - 0.0007j +-0.0005 - 0.0080j + 0.0065 - 0.0002j + 0.0000 - 0.0078j + 0.0057 + 0.0002j + 0.0006 - 0.0076j + 0.0050 + 0.0005j + 0.0010 - 0.0073j + 0.0044 + 0.0008j + 0.0015 - 0.0071j + 0.0038 + 0.0009j + 0.0019 - 0.0068j + 0.0032 + 0.0010j + 0.0023 - 0.0065j + 0.0027 + 0.0011j + 0.0027 - 0.0062j + 0.0022 + 0.0011j + 0.0031 - 0.0059j + 0.0018 + 0.0010j + 0.0034 - 0.0056j + 0.0014 + 0.0009j + 0.0037 - 0.0052j + 0.0010 + 0.0008j + 0.0040 - 0.0049j + 0.0007 + 0.0006j + 0.0042 - 0.0045j + 0.0004 + 0.0004j + 0.0044 - 0.0042j + 0.0002 + 0.0002j + 0.0046 - 0.0038j +-0.0001 - 0.0001j + 0.0047 - 0.0034j +-0.0002 - 0.0003j + 0.0048 - 0.0030j +-0.0003 - 0.0006j + 0.0049 - 0.0026j +-0.0004 - 0.0009j + 0.0049 - 0.0022j +-0.0005 - 0.0012j + 0.0049 - 0.0018j +-0.0005 - 0.0015j + 0.0048 - 0.0014j +-0.0004 - 0.0017j + 0.0047 - 0.0010j +-0.0004 - 0.0020j + 0.0046 - 0.0007j +-0.0003 - 0.0023j + 0.0044 - 0.0004j +-0.0001 - 0.0025j + 0.0043 - 0.0001j + 0.0001 - 0.0027j + 0.0040 + 0.0002j + 0.0003 - 0.0029j + 0.0038 + 0.0005j + 0.0005 - 0.0030j + 0.0035 + 0.0007j + 0.0007 - 0.0032j + 0.0033 + 0.0009j + 0.0010 - 0.0033j + 0.0030 + 0.0010j + 0.0012 - 0.0033j + 0.0027 + 0.0011j + 0.0015 - 0.0033j + 0.0024 + 0.0012j + 0.0018 - 0.0033j + 0.0021 + 0.0012j + 0.0021 - 0.0033j + 0.0018 + 0.0012j + 0.0023 - 0.0032j + 0.0015 + 0.0012j + 0.0026 - 0.0031j + 0.0012 + 0.0011j + 0.0029 - 0.0030j + 0.0010 + 0.0010j + 0.0031 - 0.0028j + 0.0007 + 0.0009j + 0.0033 - 0.0026j + 0.0005 + 0.0007j + 0.0035 - 0.0024j + 0.0003 + 0.0005j + 0.0036 - 0.0022j + 0.0002 + 0.0003j + 0.0038 - 0.0019j + 0.0001 + 0.0001j + 0.0039 - 0.0016j +-0.0000 - 0.0001j + 0.0039 - 0.0014j +-0.0001 - 0.0003j + 0.0040 - 0.0011j +-0.0001 - 0.0006j + 0.0040 - 0.0008j +-0.0001 - 0.0008j + 0.0039 - 0.0005j +-0.0001 - 0.0011j + 0.0039 - 0.0002j +-0.0000 - 0.0013j + 0.0038 + 0.0000j + 0.0001 - 0.0015j + 0.0037 + 0.0003j + 0.0002 - 0.0017j + 0.0035 + 0.0005j + 0.0003 - 0.0019j + 0.0033 + 0.0007j + 0.0005 - 0.0020j + 0.0032 + 0.0009j + 0.0007 - 0.0022j + 0.0029 + 0.0010j + 0.0009 - 0.0023j + 0.0027 + 0.0012j + 0.0011 - 0.0024j + 0.0025 + 0.0013j + 0.0014 - 0.0024j + 0.0022 + 0.0013j + 0.0016 - 0.0024j + 0.0020 + 0.0014j + 0.0018 - 0.0024j + 0.0017 + 0.0014j + 0.0021 - 0.0024j + 0.0015 + 0.0014j + 0.0023 - 0.0023j + 0.0013 + 0.0013j + 0.0025 - 0.0022j + 0.0010 + 0.0012j + 0.0027 - 0.0021j + 0.0008 + 0.0011j + 0.0029 - 0.0020j + 0.0006 + 0.0010j + 0.0031 - 0.0018j + 0.0005 + 0.0009j + 0.0033 - 0.0016j + 0.0003 + 0.0007j + 0.0034 - 0.0014j + 0.0002 + 0.0005j + 0.0035 - 0.0012j + 0.0001 + 0.0003j + 0.0036 - 0.0009j + 0.0000 + 0.0001j + 0.0036 - 0.0007j +-0.0000 - 0.0001j + 0.0036 - 0.0004j +-0.0000 - 0.0004j + 0.0036 - 0.0002j +-0.0000 - 0.0006j + 0.0036 + 0.0001j + 0.0000 - 0.0008j + 0.0035 + 0.0003j + 0.0001 - 0.0010j + 0.0034 + 0.0005j + 0.0002 - 0.0012j + 0.0033 + 0.0007j + 0.0004 - 0.0014j + 0.0032 + 0.0009j + 0.0005 - 0.0015j + 0.0030 + 0.0011j + 0.0007 - 0.0017j + 0.0028 + 0.0013j + 0.0009 - 0.0018j + 0.0026 + 0.0014j + 0.0011 - 0.0019j + 0.0024 + 0.0015j + 0.0013 - 0.0019j + 0.0022 + 0.0016j + 0.0015 - 0.0020j + 0.0019 + 0.0016j + 0.0017 - 0.0020j + 0.0017 + 0.0016j + 0.0020 - 0.0019j + 0.0015 + 0.0016j + 0.0022 - 0.0019j + 0.0013 + 0.0016j + 0.0024 - 0.0018j + 0.0011 + 0.0015j + 0.0026 - 0.0017j + 0.0008 + 0.0014j + 0.0028 - 0.0016j + 0.0007 + 0.0013j + 0.0030 - 0.0014j + 0.0005 + 0.0012j + 0.0031 - 0.0012j + 0.0003 + 0.0010j + 0.0033 - 0.0010j + 0.0002 + 0.0008j + 0.0034 - 0.0008j + 0.0001 + 0.0006j + 0.0035 - 0.0006j + 0.0001 + 0.0004j + 0.0035 - 0.0004j + 0.0000 + 0.0002j + 0.0036 - 0.0001j \ No newline at end of file diff --git a/examples/FFT_autocorrelate.grc b/examples/FFT_autocorrelate.grc new file mode 100644 index 0000000..6efff8c --- /dev/null +++ b/examples/FFT_autocorrelate.grc @@ -0,0 +1,349 @@ +options: + parameters: + author: tempest + catch_exceptions: 'True' + category: '[Tempest]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: hb + hier_block_src_path: '.:' + id: FFT_autocorrelation + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: FFT_autocorrelation_ + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [7, 7] + rotation: 0 + state: enabled + +blocks: +- name: fac_size + id: variable + parameters: + comment: '' + value: fft_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [346, 28] + rotation: 0 + state: true +- name: klog + id: variable + parameters: + comment: '' + value: -20*log10(fac_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [586, 10] + rotation: 0 + state: true +- name: alpha + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: '' + short_id: '' + type: '' + value: '1.0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [167, 218] + rotation: 0 + state: true +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [634, 76] + rotation: 0 + state: true +- name: blocks_complex_to_mag_0_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [702, 272] + rotation: 0 + state: true +- name: blocks_nlog10_ff_1 + id: blocks_nlog10_ff + parameters: + affinity: '' + alias: '' + comment: '' + k: klog + maxoutbuf: '0' + minoutbuf: '0' + n: '20' + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [751, 446] + rotation: 0 + state: true +- name: blocks_selector_0 + id: blocks_selector + parameters: + affinity: '' + alias: '' + comment: '' + enabled: 'True' + input_index: '0' + maxoutbuf: '0' + minoutbuf: '0' + num_inputs: '1' + num_outputs: '1' + output_index: '0' + showports: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [218, 355] + rotation: 0 + state: true +- name: blocks_stream_to_vector_0 + id: blocks_stream_to_vector + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_items: fac_size + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [313, 283] + rotation: 0 + state: enabled +- name: blocks_vector_to_stream_0 + id: blocks_vector_to_stream + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_items: fft_size + type: float + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [967, 367] + rotation: 0 + state: true +- name: fft_size + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: fft_size + short_id: '' + type: intx + value: int(4096*512) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [65, 230] + rotation: 0 + state: true +- name: fft_vxx_0 + id: fft_vxx + parameters: + affinity: '' + alias: '' + comment: '' + fft_size: fac_size + forward: 'True' + maxoutbuf: '0' + minoutbuf: '0' + nthreads: '4' + shift: 'False' + type: complex + window: () + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [470, 123] + rotation: 0 + state: enabled +- name: fft_vxx_1 + id: fft_vxx + parameters: + affinity: '' + alias: '' + comment: '' + fft_size: fac_size + forward: 'False' + maxoutbuf: '0' + minoutbuf: '0' + nthreads: '4' + shift: 'True' + type: float + window: () + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [702, 151] + rotation: 0 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import log10 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [689, 8] + rotation: 0 + state: true +- name: pad_sink_0 + id: pad_sink + parameters: + affinity: '' + alias: '' + comment: '' + label: out + num_streams: '1' + optional: 'False' + type: float + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [973, 214] + rotation: 0 + state: true +- name: pad_source_0 + id: pad_source + parameters: + affinity: '' + alias: '' + comment: '' + label: in + maxoutbuf: '0' + minoutbuf: '0' + num_streams: '1' + optional: 'False' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [47, 429] + rotation: 0 + state: true +- name: pad_source_0_0 + id: pad_source + parameters: + affinity: '' + alias: '' + comment: '' + label: en + maxoutbuf: '0' + minoutbuf: '0' + num_streams: '1' + optional: 'True' + type: message + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [53, 474] + rotation: 0 + state: true +- name: single_pole_iir_filter_xx_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: alpha + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: float + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [683, 362] + rotation: 0 + state: true + +connections: +- [blocks_complex_to_mag_0, '0', fft_vxx_1, '0'] +- [blocks_complex_to_mag_0_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_nlog10_ff_1, '0', blocks_vector_to_stream_0, '0'] +- [blocks_selector_0, '0', blocks_stream_to_vector_0, '0'] +- [blocks_stream_to_vector_0, '0', fft_vxx_0, '0'] +- [blocks_vector_to_stream_0, '0', pad_sink_0, '0'] +- [fft_vxx_0, '0', blocks_complex_to_mag_0, '0'] +- [fft_vxx_1, '0', blocks_complex_to_mag_0_0, '0'] +- [pad_source_0, '0', blocks_selector_0, '0'] +- [single_pole_iir_filter_xx_0, '0', blocks_nlog10_ff_1, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/FFT_crosscorrelate.grc b/examples/FFT_crosscorrelate.grc new file mode 100644 index 0000000..2370325 --- /dev/null +++ b/examples/FFT_crosscorrelate.grc @@ -0,0 +1,489 @@ +options: + parameters: + author: tempest + catch_exceptions: 'True' + category: '[Tempest]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: hb + hier_block_src_path: '.:' + id: FFT_crosscorrelation_ + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: FFT_crosscorrelation + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [45, 15] + rotation: 0 + state: enabled + +blocks: +- name: delay_samples_var + id: variable + parameters: + comment: '' + value: delay_samples + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [443, 34] + rotation: 0 + state: true +- name: fac_size + id: variable + parameters: + comment: '' + value: fft_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [319, 34] + rotation: 0 + state: true +- name: klog + id: variable + parameters: + comment: '' + value: -20*log10(fac_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [586, 10] + rotation: 0 + state: true +- name: blocks_complex_to_mag_0_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [780, 351] + rotation: 0 + state: disabled +- name: blocks_complex_to_mag_squared_0 + id: blocks_complex_to_mag_squared + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [759, 325] + rotation: 0 + state: enabled +- name: blocks_delay_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: delay_samples_var + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [243, 402] + rotation: 0 + state: enabled +- name: blocks_keep_one_in_n_0 + id: blocks_keep_one_in_n + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + n: fac_decimation + type: complex + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [374, 215] + rotation: 0 + state: true +- name: blocks_keep_one_in_n_0_0 + id: blocks_keep_one_in_n + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + n: fac_decimation + type: complex + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [368, 471] + rotation: 0 + state: true +- name: blocks_multiply_conjugate_cc_0 + id: blocks_multiply_conjugate_cc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [635, 261] + rotation: 0 + state: true +- name: blocks_nlog10_ff_1 + id: blocks_nlog10_ff + parameters: + affinity: '' + alias: '' + comment: '' + k: klog + maxoutbuf: '0' + minoutbuf: '0' + n: '20' + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [947, 312] + rotation: 0 + state: enabled +- name: blocks_stream_to_vector_0 + id: blocks_stream_to_vector + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_items: fac_size + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [288, 292] + rotation: 0 + state: enabled +- name: blocks_stream_to_vector_0_0 + id: blocks_stream_to_vector + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_items: fac_size + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [394, 391] + rotation: 0 + state: enabled +- name: blocks_vector_to_stream_0 + id: blocks_vector_to_stream + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_items: fft_size + type: float + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [993, 234] + rotation: 0 + state: true +- name: delay_samples + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: delay_samples + short_id: '' + type: intx + value: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [48, 384] + rotation: 0 + state: true +- name: fac_decimation + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: fac_decimation + short_id: '' + type: intx + value: '10' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [198, 113] + rotation: 0 + state: true +- name: fft_size + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: fft_size + short_id: '' + type: intx + value: int(4096*512) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [65, 230] + rotation: 0 + state: true +- name: fft_vxx_0 + id: fft_vxx + parameters: + affinity: '' + alias: '' + comment: '' + fft_size: fac_size + forward: 'True' + maxoutbuf: '0' + minoutbuf: '0' + nthreads: '4' + shift: 'False' + type: complex + window: () + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [487, 119] + rotation: 0 + state: enabled +- name: fft_vxx_0_0 + id: fft_vxx + parameters: + affinity: '' + alias: '' + comment: '' + fft_size: fac_size + forward: 'True' + maxoutbuf: '0' + minoutbuf: '0' + nthreads: '4' + shift: 'False' + type: complex + window: () + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [475, 538] + rotation: 0 + state: enabled +- name: fft_vxx_1 + id: fft_vxx + parameters: + affinity: '' + alias: '' + comment: '' + fft_size: fac_size + forward: 'False' + maxoutbuf: '0' + minoutbuf: '0' + nthreads: '4' + shift: 'True' + type: complex + window: () + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [824, 176] + rotation: 0 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import log10 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [689, 8] + rotation: 0 + state: true +- name: pad_sink_0 + id: pad_sink + parameters: + affinity: '' + alias: '' + comment: '' + label: out + num_streams: '1' + optional: 'False' + type: float + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1071, 134] + rotation: 0 + state: true +- name: pad_source_0 + id: pad_source + parameters: + affinity: '' + alias: '' + comment: '' + label: in + maxoutbuf: '0' + minoutbuf: '0' + num_streams: '1' + optional: 'False' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [80, 335] + rotation: 0 + state: true +- name: pad_source_0_0 + id: pad_source + parameters: + affinity: '' + alias: '' + comment: '' + label: in + maxoutbuf: '0' + minoutbuf: '0' + num_streams: '1' + optional: 'False' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [102, 569] + rotation: 0 + state: true +- name: sample_rate + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: sample_rate + short_id: '' + type: intx + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [84, 137] + rotation: 0 + state: true +- name: single_pole_iir_filter_xx_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: '1' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: float + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [870, 429] + rotation: 0 + state: true + +connections: +- [blocks_complex_to_mag_0_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_complex_to_mag_squared_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_delay_0, '0', blocks_stream_to_vector_0_0, '0'] +- [blocks_keep_one_in_n_0, '0', fft_vxx_0, '0'] +- [blocks_keep_one_in_n_0_0, '0', fft_vxx_0_0, '0'] +- [blocks_multiply_conjugate_cc_0, '0', fft_vxx_1, '0'] +- [blocks_nlog10_ff_1, '0', blocks_vector_to_stream_0, '0'] +- [blocks_stream_to_vector_0, '0', blocks_keep_one_in_n_0, '0'] +- [blocks_stream_to_vector_0_0, '0', blocks_keep_one_in_n_0_0, '0'] +- [blocks_vector_to_stream_0, '0', pad_sink_0, '0'] +- [fft_vxx_0, '0', blocks_multiply_conjugate_cc_0, '0'] +- [fft_vxx_0_0, '0', blocks_multiply_conjugate_cc_0, '1'] +- [fft_vxx_1, '0', blocks_complex_to_mag_0_0, '0'] +- [fft_vxx_1, '0', blocks_complex_to_mag_squared_0, '0'] +- [pad_source_0, '0', blocks_stream_to_vector_0, '0'] +- [pad_source_0_0, '0', blocks_delay_0, '0'] +- [single_pole_iir_filter_xx_0, '0', blocks_nlog10_ff_1, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/Keep_1_in_N_frames.grc b/examples/Keep_1_in_N_frames.grc new file mode 100644 index 0000000..1b82776 --- /dev/null +++ b/examples/Keep_1_in_N_frames.grc @@ -0,0 +1,183 @@ +options: + parameters: + author: tempest + catch_exceptions: 'True' + category: '[Tempest]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: hb + hier_block_src_path: '.:' + id: Keep_1_in_N_Frames + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: Keep_1_in_N_Frames + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [7, 7] + rotation: 0 + state: enabled + +blocks: +- name: fac_size + id: variable + parameters: + comment: '' + value: fft_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [310, 109] + rotation: 0 + state: true +- name: blocks_keep_one_in_n_0 + id: blocks_keep_one_in_n + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + n: fac_decimation + type: complex + vlen: fac_size + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [498, 265] + rotation: 0 + state: true +- name: blocks_stream_to_vector_0 + id: blocks_stream_to_vector + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_items: fac_size + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [274, 314] + rotation: 0 + state: enabled +- name: blocks_vector_to_stream_0 + id: blocks_vector_to_stream + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_items: fac_size + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [718, 309] + rotation: 0 + state: true +- name: fac_decimation + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: N Frames + short_id: '' + type: intx + value: '10' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [162, 132] + rotation: 0 + state: true +- name: fft_size + id: parameter + parameters: + alias: '' + comment: '' + hide: none + label: Frame Size + short_id: '' + type: intx + value: int(4096*512) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [42, 161] + rotation: 0 + state: true +- name: pad_sink_0 + id: pad_sink + parameters: + affinity: '' + alias: '' + comment: '' + label: out + num_streams: '1' + optional: 'False' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [927, 306] + rotation: 0 + state: true +- name: pad_source_0 + id: pad_source + parameters: + affinity: '' + alias: '' + comment: '' + label: in + maxoutbuf: '0' + minoutbuf: '0' + num_streams: '1' + optional: 'False' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [88, 306] + rotation: 0 + state: true + +connections: +- [blocks_keep_one_in_n_0, '0', blocks_vector_to_stream_0, '0'] +- [blocks_stream_to_vector_0, '0', blocks_keep_one_in_n_0, '0'] +- [blocks_vector_to_stream_0, '0', pad_sink_0, '0'] +- [pad_source_0, '0', blocks_stream_to_vector_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/automatic_tempest_example.grc b/examples/automatic_tempest_example.grc index 524ba86..b8e55af 100644 --- a/examples/automatic_tempest_example.grc +++ b/examples/automatic_tempest_example.grc @@ -1,6 +1,7 @@ options: parameters: author: '' + catch_exceptions: 'True' category: '[GRC Hier Blocks]' cmake_opt: '' comment: '' @@ -180,8 +181,10 @@ blocks: gui_hint: '' label: Hsync delay min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: int(Hblank/float(px_rate)*samp_rate)*2 @@ -201,8 +204,10 @@ blocks: gui_hint: '' label: Harmonic min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '1' step: '1' stop: '10' @@ -240,6 +245,7 @@ blocks: label4: '' labels: '[]' num_opts: '2' + option0: '0' option1: '1' option2: '2' option3: '3' @@ -263,8 +269,10 @@ blocks: gui_hint: '' label: Vertical offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: Vsize @@ -290,6 +298,7 @@ blocks: label4: '' labels: modes num_opts: '0' + option0: '0' option1: '1' option2: '2' option3: '3' @@ -650,38 +659,70 @@ blocks: clock_source6: '' clock_source7: '' comment: '' - dc_offs_enb0: '""' - dc_offs_enb1: '""' - dc_offs_enb10: '""' - dc_offs_enb11: '""' - dc_offs_enb12: '""' - dc_offs_enb13: '""' - dc_offs_enb14: '""' - dc_offs_enb15: '""' - dc_offs_enb16: '""' - dc_offs_enb17: '""' - dc_offs_enb18: '""' - dc_offs_enb19: '""' - dc_offs_enb2: '""' - dc_offs_enb20: '""' - dc_offs_enb21: '""' - dc_offs_enb22: '""' - dc_offs_enb23: '""' - dc_offs_enb24: '""' - dc_offs_enb25: '""' - dc_offs_enb26: '""' - dc_offs_enb27: '""' - dc_offs_enb28: '""' - dc_offs_enb29: '""' - dc_offs_enb3: '""' - dc_offs_enb30: '""' - dc_offs_enb31: '""' - dc_offs_enb4: '""' - dc_offs_enb5: '""' - dc_offs_enb6: '""' - dc_offs_enb7: '""' - dc_offs_enb8: '""' - dc_offs_enb9: '""' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default dev_addr: '""' dev_args: '""' gain0: '50' @@ -716,38 +757,102 @@ blocks: gain7: '0' gain8: '0' gain9: '0' - iq_imbal_enb0: '""' - iq_imbal_enb1: '""' - iq_imbal_enb10: '""' - iq_imbal_enb11: '""' - iq_imbal_enb12: '""' - iq_imbal_enb13: '""' - iq_imbal_enb14: '""' - iq_imbal_enb15: '""' - iq_imbal_enb16: '""' - iq_imbal_enb17: '""' - iq_imbal_enb18: '""' - iq_imbal_enb19: '""' - iq_imbal_enb2: '""' - iq_imbal_enb20: '""' - iq_imbal_enb21: '""' - iq_imbal_enb22: '""' - iq_imbal_enb23: '""' - iq_imbal_enb24: '""' - iq_imbal_enb25: '""' - iq_imbal_enb26: '""' - iq_imbal_enb27: '""' - iq_imbal_enb28: '""' - iq_imbal_enb29: '""' - iq_imbal_enb3: '""' - iq_imbal_enb30: '""' - iq_imbal_enb31: '""' - iq_imbal_enb4: '""' - iq_imbal_enb5: '""' - iq_imbal_enb6: '""' - iq_imbal_enb7: '""' - iq_imbal_enb8: '""' - iq_imbal_enb9: '""' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default lo_export0: 'False' lo_export1: 'False' lo_export10: 'False' @@ -815,38 +920,6 @@ blocks: maxoutbuf: '0' minoutbuf: '0' nchan: '1' - norm_gain0: 'False' - norm_gain1: 'False' - norm_gain10: 'False' - norm_gain11: 'False' - norm_gain12: 'False' - norm_gain13: 'False' - norm_gain14: 'False' - norm_gain15: 'False' - norm_gain16: 'False' - norm_gain17: 'False' - norm_gain18: 'False' - norm_gain19: 'False' - norm_gain2: 'False' - norm_gain20: 'False' - norm_gain21: 'False' - norm_gain22: 'False' - norm_gain23: 'False' - norm_gain24: 'False' - norm_gain25: 'False' - norm_gain26: 'False' - norm_gain27: 'False' - norm_gain28: 'False' - norm_gain29: 'False' - norm_gain3: 'False' - norm_gain30: 'False' - norm_gain31: 'False' - norm_gain4: 'False' - norm_gain5: 'False' - norm_gain6: 'False' - norm_gain7: 'False' - norm_gain8: 'False' - norm_gain9: 'False' num_mboards: '1' otw: '' rx_agc0: Default @@ -891,6 +964,7 @@ blocks: sd_spec6: '' sd_spec7: '' show_lo_controls: 'False' + start_time: '-1.0' stream_args: '' stream_chans: '[]' sync: sync @@ -944,3 +1018,4 @@ connections: metadata: file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/automatic_tempest_example_equalization_hd.grc b/examples/automatic_tempest_example_equalization_hd.grc new file mode 100644 index 0000000..473ebf5 --- /dev/null +++ b/examples/automatic_tempest_example_equalization_hd.grc @@ -0,0 +1,1255 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [8, 8] + rotation: 0 + state: enabled + +blocks: +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1170, 137] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1102, 278] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1171, 33] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1284, 85] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [978, 277] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1284, 33] + rotation: 0 + state: enabled +- name: delay + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Hsync delay + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(Hsize/float(px_rate)*samp_rate)*2 + value: int(136/float(px_rate)*samp_rate) + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [352, 4] + rotation: 0 + state: enabled +- name: delay_fase + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Delay fase + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: 2*interpolatedHsize*Vsize + value: interpolatedHsize*Vsize + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [704, 12] + rotation: 0 + state: enabled +- name: epsilon + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Fine sampling correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: (interpolatedHsize-2)/float(interpolatedHsize)-1 + step: 1e-7 + stop: (interpolatedHsize+2)/float(interpolatedHsize)-1 + value: '0.00101' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1016, 84] + rotation: 0 + state: enabled +- name: eq_fir_1080p + id: variable + parameters: + comment: '' + value: '[-0.0004 + 0j,-0.0000 + 0.0000j,-0.0004 - 0.0000j,-0.0000 + 0.0001j,-0.0004 + - 0.0001j,-0.0000 + 0.0001j,-0.0004 - 0.0001j,-0.0000 + 0.0002j,-0.0004 + - 0.0001j,-0.0001 + 0.0002j,-0.0003 - 0.0001j,-0.0001 + 0.0003j,-0.0003 + - 0.0001j,-0.0002 + 0.0003j,-0.0003 - 0.0001j,-0.0002 + 0.0004j,-0.0002 + - 0.0001j,-0.0002 + 0.0004j,-0.0002 - 0.0001j,-0.0003 + 0.0004j,-0.0001 + - 0.0001j,-0.0003 + 0.0004j,-0.0001 - 0.0001j,-0.0004 + 0.0004j,-0.0000 + - 0.0000j,-0.0004 + 0.0004j, 0.0000 + 0.0000j,-0.0005 + 0.0004j, 0.0000 + + 0.0001j,-0.0005 + 0.0004j, 0.0001 + 0.0001j,-0.0006 + 0.0003j, 0.0001 + + 0.0002j,-0.0006 + 0.0003j, 0.0001 + 0.0002j,-0.0006 + 0.0003j, 0.0001 + + 0.0003j,-0.0006 + 0.0002j, 0.0001 + 0.0004j,-0.0006 + 0.0002j, 0.0001 + + 0.0005j,-0.0006 + 0.0001j, 0.0001 + 0.0005j,-0.0006 + 0.0001j, 0.0001 + + 0.0006j,-0.0006 + 0.0000j, 0.0000 + 0.0007j,-0.0006 - 0.0000j,-0.0000 + + 0.0008j,-0.0005 - 0.0000j,-0.0001 + 0.0008j,-0.0005 - 0.0001j,-0.0002 + + 0.0009j,-0.0004 - 0.0001j,-0.0002 + 0.0009j,-0.0004 - 0.0001j,-0.0003 + + 0.0010j,-0.0003 - 0.0001j,-0.0004 + 0.0010j,-0.0002 - 0.0001j,-0.0005 + + 0.0010j,-0.0002 - 0.0001j,-0.0006 + 0.0011j,-0.0001 - 0.0001j,-0.0007 + + 0.0011j,-0.0000 - 0.0000j,-0.0008 + 0.0010j, 0.0000 + 0.0000j,-0.0009 + + 0.0010j, 0.0001 + 0.0001j,-0.0010 + 0.0010j, 0.0002 + 0.0002j,-0.0011 + + 0.0009j, 0.0002 + 0.0003j,-0.0011 + 0.0009j, 0.0003 + 0.0004j,-0.0012 + + 0.0008j, 0.0003 + 0.0005j,-0.0013 + 0.0007j, 0.0003 + 0.0006j,-0.0013 + + 0.0006j, 0.0003 + 0.0007j,-0.0014 + 0.0005j, 0.0003 + 0.0008j,-0.0014 + + 0.0004j, 0.0003 + 0.0010j,-0.0014 + 0.0003j, 0.0002 + 0.0011j,-0.0014 + + 0.0002j, 0.0002 + 0.0013j,-0.0015 + 0.0002j, 0.0001 + 0.0019j,-0.0038 + + 0.0001j, 0.0001 + 0.0198j, 0.0603 + 0.0018j, 0.0091 - 0.1418j,-0.2643 + - 0.0260j,-0.0543 + 0.4093j, 0.5602 + 0.0937j, 0.1441 - 0.7130j,-0.8669 + - 0.2059j,-0.2777 + 1.0157j, 1.1535 + 0.3576j, 0.4438 - 1.2773j,-1.3776 + - 0.5314j,-0.6122 + 1.4403j, 1.4636 + 0.6813j, 0.7425 - 1.4640j,-1.4577 + - 0.8023j,-0.8613 + 1.4470j, 1.4300 + 0.9179j, 0.9747 - 1.4114j,-1.3954 + - 1.0349j,-1.0955 + 1.3775j, 1.3531 + 1.1528j, 1.2096 - 1.3263j,-1.3019 + - 1.2703j,-1.3319 + 1.2759j, 1.2436 + 1.3891j, 1.4451 - 1.2084j,-1.1749 + - 1.5056j,-1.5673 + 1.1402j, 1.0995 + 1.6238j, 1.6782 - 1.0555j,-1.0126 + - 1.7375j,-1.7986 + 0.9685j, 0.9189 + 1.8538j, 1.9057 - 0.8658j,-0.8130 + - 1.9627j,-2.0224 + 0.7588j, 0.6998 + 2.0754j, 2.1239 - 0.6372j,-0.5739 + - 2.1776j,-2.2347 + 0.5090j, 0.4399 + 2.2848j, 2.3289 - 0.3674j,-0.2933 + - 2.3781j,-2.4316 + 0.2169j, 0.1370 + 2.4778j, 2.5165 - 0.0541j, 0.0314 + - 2.5599j,-2.6085 - 0.1201j,-0.2118 + 2.6496j, 2.6819 + 0.3057j, 0.4032 + - 2.7181j,-2.7604 - 0.5052j,-0.6097 + 2.7952j, 2.8196 + 0.7155j, 0.8257 + - 2.8472j,-2.8814 - 0.9421j,-1.0608 + 2.9083j, 2.9235 + 1.1796j, 1.3035 + - 2.9407j,-2.9648 - 1.4358j,-1.5705 + 2.9820j, 2.9863 + 1.7038j, 1.8430 + - 2.9910j,-3.0027 - 1.9930j,-2.1461 + 3.0078j, 2.9988 + 2.2962j, 2.4527 + - 2.9886j,-2.9849 - 2.6231j,-2.7977 + 2.9749j, 2.9497 + 2.9679j, 3.1448 + - 2.9214j,-2.8985 - 3.3394j,-3.5403 + 2.8692j, 2.8239 + 3.7352j, 3.9374 + - 2.7730j,-2.7258 - 4.1619j,-4.3958 + 2.6715j, 2.6001 + 4.6228j, 4.8579 + - 2.5204j,-2.4414 - 5.1213j,-5.3988 + 2.3536j, 2.2471 + 5.6694j, 5.9499 + - 2.1289j,-2.0065 - 6.2670j,-6.6056 + 1.8717j, 1.7156 + 6.9393j, 7.2870 + - 1.5427j,-1.3575 - 7.6836j,-8.1142 + 1.1528j, 0.9212 + 8.5461j, 9.0016 + - 0.6640j,-0.3802 - 9.5270j,10.1094 + 0.0620j,-0.2958 + 10.7103j,11.3586 + + 0.6978j, 1.1560 - 12.1183j,12.9856 - 1.6826j,-2.2839 + 13.9218j,14.9722 + + 2.9782j, 3.8038 - 16.2383j,17.7577 - 4.7971j,-5.9920 + 19.5370j,21.6829 + + 7.4594j, 9.3348 - 24.4225j,28.1470 - 11.8617j,15.4831 + 33.5314j,40.9709 + + 20.6230j,26.6688 - 48.8079j,52.0219 - 30.7484j,28.2403 + 44.2950j,23.3522 + + 16.0214j,-3.8869 + 5.2747j,30.8124 + 24.3519j,37.7829 - 44.6248j,45.5825 + - 41.3136j,37.7025 + 38.8773j,30.6655 + 31.8158j,26.8368 - 24.1739j,19.7007 + - 23.4135j,21.0374 + 16.5218j,14.0970 + 19.2534j,17.8348 - 12.1558j,10.5339 + - 16.6349j,15.6016 + 9.1571j, 8.0025 + 14.7531j,14.0496 - 7.0180j,-6.1378 + - 13.4003j,12.7899 + 5.3438j, 4.6462 + 12.2684j,11.8264 - 4.0280j,-3.4572 + - 11.3969j,10.9712 + 2.9277j, 2.4483 + 10.5981j,10.2775 - 2.0116j,-1.6020 + - 9.9561j,-9.6259 + 1.2172j, 0.8612 + 9.3302j, 9.0735 - 0.5295j,-0.2163 + - 8.8117j,-8.5362 - 0.0786j,-0.3561 + 8.2845j, 8.0638 + 0.6197j, 0.8691 + - 7.8372j,-7.5953 - 1.1029j,-1.3255 + 7.3701j, 7.1703 + 1.5410j, 1.7448 + - 6.9655j,-6.7452 - 1.9337j,-2.1150 + 6.5365j, 6.3493 + 2.2938j, 2.4627 + - 6.1581j,-5.9524 - 2.6167j,-2.7650 + 5.7545j, 5.5747 + 2.9141j, 3.0547 + - 5.3922j,-5.1967 - 3.1801j,-3.3007 + 5.0061j, 4.8306 + 3.4243j, 3.5409 + - 4.6538j,-4.4656 - 3.6420j,-3.7384 + 4.2804j, 4.1076 + 3.8393j, 3.9345 + - 3.9345j,-3.7519 - 4.0141j,-4.0887 + 3.5709j, 3.3999 + 4.1688j, 4.2445 + - 3.2294j,-3.0514 - 4.3046j,-4.3591 + 2.8742j, 2.7047 + 4.4197j, 4.4769 + - 2.5361j,-2.3622 - 4.5189j,-4.5547 + 2.1885j, 2.0207 + 4.5966j, 4.6361 + - 1.8540j,-1.6839 - 4.6609j,-4.6790 + 1.5140j, 1.3482 + 4.7029j, 4.7252 + - 1.1836j,-1.0173 - 4.7335j,-4.7347 + 0.8515j, 0.6884 + 4.7411j, 4.7465 + - 0.5264j,-0.3642 - 4.7389j,-4.7239 + 0.2030j, 0.0434 + 4.7133j, 4.7021 + + 0.1154j, 0.2730 - 4.6788j,-4.6481 - 0.4290j,-0.5844 + 4.6211j, 4.5934 + + 0.7391j, 0.8915 - 4.5546j,-4.5088 - 1.0416j,-1.1917 + 4.4659j, 4.4220 + + 1.3414j, 1.4877 - 4.3679j,-4.3074 - 1.6313j,-1.7754 + 4.2492j, 4.1893 + + 1.9189j, 2.0580 - 4.1200j,-4.0452 - 2.1942j,-2.3315 + 3.9723j, 3.8968 + + 2.4676j, 2.5985 - 3.8124j,-3.7237 - 2.7264j,-2.8561 + 3.6366j, 3.5461 + + 2.9838j, 3.1047 - 3.4467j,-3.3444 - 3.2235j,-3.3448 + 3.2438j, 3.1387 + + 3.4630j, 3.5729 - 3.0251j,-2.9091 - 3.6809j,-3.7913 + 2.7939j, 2.6757 + + 3.9000j, 4.0096 - 2.5563j,-2.4240 - 4.1010j,-4.0498 + 2.2128j, 1.8310 + + 3.6375j, 2.7604 - 1.2746j,-0.6875 - 1.6313j,-0.6705 + 0.2563j, 0.0515 + + 0.1497j, 0.0019 - 0.0006j, 0.0015 + 0.0056j, 0.0078 - 0.0018j,-0.0011 + - 0.0057j, 0.0080 - 0.0013j,-0.0010 - 0.0077j, 0.0073 - 0.0007j,-0.0005 + - 0.0080j, 0.0065 - 0.0002j, 0.0000 - 0.0078j, 0.0057 + 0.0002j, 0.0006 + - 0.0076j, 0.0050 + 0.0005j, 0.0010 - 0.0073j, 0.0044 + 0.0008j, 0.0015 + - 0.0071j, 0.0038 + 0.0009j, 0.0019 - 0.0068j, 0.0032 + 0.0010j, 0.0023 + - 0.0065j, 0.0027 + 0.0011j, 0.0027 - 0.0062j, 0.0022 + 0.0011j, 0.0031 + - 0.0059j, 0.0018 + 0.0010j, 0.0034 - 0.0056j, 0.0014 + 0.0009j, 0.0037 + - 0.0052j, 0.0010 + 0.0008j, 0.0040 - 0.0049j, 0.0007 + 0.0006j, 0.0042 + - 0.0045j, 0.0004 + 0.0004j, 0.0044 - 0.0042j, 0.0002 + 0.0002j, 0.0046 + - 0.0038j,-0.0001 - 0.0001j, 0.0047 - 0.0034j,-0.0002 - 0.0003j, 0.0048 + - 0.0030j,-0.0003 - 0.0006j, 0.0049 - 0.0026j,-0.0004 - 0.0009j, 0.0049 + - 0.0022j,-0.0005 - 0.0012j, 0.0049 - 0.0018j,-0.0005 - 0.0015j, 0.0048 + - 0.0014j,-0.0004 - 0.0017j, 0.0047 - 0.0010j,-0.0004 - 0.0020j, 0.0046 + - 0.0007j,-0.0003 - 0.0023j, 0.0044 - 0.0004j,-0.0001 - 0.0025j, 0.0043 + - 0.0001j, 0.0001 - 0.0027j, 0.0040 + 0.0002j, 0.0003 - 0.0029j, 0.0038 + + 0.0005j, 0.0005 - 0.0030j, 0.0035 + 0.0007j, 0.0007 - 0.0032j, 0.0033 + + 0.0009j, 0.0010 - 0.0033j, 0.0030 + 0.0010j, 0.0012 - 0.0033j, 0.0027 + + 0.0011j, 0.0015 - 0.0033j, 0.0024 + 0.0012j, 0.0018 - 0.0033j, 0.0021 + + 0.0012j, 0.0021 - 0.0033j, 0.0018 + 0.0012j, 0.0023 - 0.0032j, 0.0015 + + 0.0012j, 0.0026 - 0.0031j, 0.0012 + 0.0011j, 0.0029 - 0.0030j, 0.0010 + + 0.0010j, 0.0031 - 0.0028j, 0.0007 + 0.0009j, 0.0033 - 0.0026j, 0.0005 + + 0.0007j, 0.0035 - 0.0024j, 0.0003 + 0.0005j, 0.0036 - 0.0022j, 0.0002 + + 0.0003j, 0.0038 - 0.0019j, 0.0001 + 0.0001j, 0.0039 - 0.0016j,-0.0000 + - 0.0001j, 0.0039 - 0.0014j,-0.0001 - 0.0003j, 0.0040 - 0.0011j,-0.0001 + - 0.0006j, 0.0040 - 0.0008j,-0.0001 - 0.0008j, 0.0039 - 0.0005j,-0.0001 + - 0.0011j, 0.0039 - 0.0002j,-0.0000 - 0.0013j, 0.0038 + 0.0000j, 0.0001 + - 0.0015j, 0.0037 + 0.0003j, 0.0002 - 0.0017j, 0.0035 + 0.0005j, 0.0003 + - 0.0019j, 0.0033 + 0.0007j, 0.0005 - 0.0020j, 0.0032 + 0.0009j, 0.0007 + - 0.0022j, 0.0029 + 0.0010j, 0.0009 - 0.0023j, 0.0027 + 0.0012j, 0.0011 + - 0.0024j, 0.0025 + 0.0013j, 0.0014 - 0.0024j, 0.0022 + 0.0013j, 0.0016 + - 0.0024j, 0.0020 + 0.0014j, 0.0018 - 0.0024j, 0.0017 + 0.0014j, 0.0021 + - 0.0024j, 0.0015 + 0.0014j, 0.0023 - 0.0023j, 0.0013 + 0.0013j, 0.0025 + - 0.0022j, 0.0010 + 0.0012j, 0.0027 - 0.0021j, 0.0008 + 0.0011j, 0.0029 + - 0.0020j, 0.0006 + 0.0010j, 0.0031 - 0.0018j, 0.0005 + 0.0009j, 0.0033 + - 0.0016j, 0.0003 + 0.0007j, 0.0034 - 0.0014j, 0.0002 + 0.0005j, 0.0035 + - 0.0012j, 0.0001 + 0.0003j, 0.0036 - 0.0009j, 0.0000 + 0.0001j, 0.0036 + - 0.0007j,-0.0000 - 0.0001j, 0.0036 - 0.0004j,-0.0000 - 0.0004j, 0.0036 + - 0.0002j,-0.0000 - 0.0006j, 0.0036 + 0.0001j, 0.0000 - 0.0008j, 0.0035 + + 0.0003j, 0.0001 - 0.0010j, 0.0034 + 0.0005j, 0.0002 - 0.0012j, 0.0033 + + 0.0007j, 0.0004 - 0.0014j, 0.0032 + 0.0009j, 0.0005 - 0.0015j, 0.0030 + + 0.0011j, 0.0007 - 0.0017j, 0.0028 + 0.0013j, 0.0009 - 0.0018j, 0.0026 + + 0.0014j, 0.0011 - 0.0019j, 0.0024 + 0.0015j, 0.0013 - 0.0019j, 0.0022 + + 0.0016j, 0.0015 - 0.0020j, 0.0019 + 0.0016j, 0.0017 - 0.0020j, 0.0017 + + 0.0016j, 0.0020 - 0.0019j, 0.0015 + 0.0016j, 0.0022 - 0.0019j, 0.0013 + + 0.0016j, 0.0024 - 0.0018j, 0.0011 + 0.0015j, 0.0026 - 0.0017j, 0.0008 + + 0.0014j, 0.0028 - 0.0016j, 0.0007 + 0.0013j, 0.0030 - 0.0014j, 0.0005 + + 0.0012j, 0.0031 - 0.0012j, 0.0003 + 0.0010j, 0.0033 - 0.0010j, 0.0002 + + 0.0008j, 0.0034 - 0.0008j, 0.0001 + 0.0006j, 0.0035 - 0.0006j, 0.0001 + + 0.0004j, 0.0035 - 0.0004j, 0.0000 + 0.0002j, 0.0036 - 0.0001j]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1281, 156] + rotation: 0 + state: true +- name: fft_size + id: variable + parameters: + comment: '' + value: 4096*1024 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1209, 228] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: "[-3.11363682e-06+6.75278918e-06j, 2.23797433e-05+3.63850305e-04j,\n \ + \ 1.24424796e-04+2.07552626e-03j, 9.13369821e-05+1.23922328e-03j,\n \ + \ 9.17470541e-06-1.27599772e-03j, -1.89672336e-04-7.66449364e-03j,\n \ + \ -6.04326364e-04-2.07456042e-02j, -1.03016890e-03-4.52780337e-02j,\n \ + \ -2.24322298e-03-7.65338416e-02j, -2.59317061e-03-1.35562197e-01j,\n \ + \ -5.05937146e-03-1.88184719e-01j, -4.40754770e-03-2.95364441e-01j,\n \ + \ -8.83183526e-03-3.55251606e-01j, -5.10069889e-03-5.21066895e-01j,\n \ + \ -1.41464771e-02-5.38323401e-01j, 2.42260390e-03-8.16748190e-01j,\n \ + \ 4.49687679e-02+2.68517170e-01j, -1.78853630e-02+7.82072975e-01j,\n \ + \ -4.44448737e-03+4.96178030e-01j, -1.02738240e-02+4.81143615e-01j,\n \ + \ -4.81582961e-03+3.17597516e-01j, -6.18209100e-03+2.63011491e-01j,\n \ + \ -3.16653758e-03+1.61327366e-01j, -3.01959070e-03+1.15054664e-01j,\n \ + \ -1.44674044e-03+6.17245262e-02j, -9.99648902e-04+3.55652006e-02j,\n \ + \ -3.99929733e-04+1.49286935e-02j, -9.70523497e-05+4.64566966e-03j,\n \ + \ 4.45207677e-05+1.15474691e-04j, 1.16728796e-04-1.83264974e-03j,\n \ + \ 9.57920774e-05-1.59212307e-03j, -3.78999089e-06+4.47966583e-05j]" + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1024, 228] + rotation: 0 + state: enabled +- name: filtro_ecualizador_viejo + id: variable + parameters: + comment: '' + value: '[ 3.5209e-07 - 1.0836e-06*1j, 1.4076e-06 - 2.3919e-06*1j, 5.9650e-06 + - 6.1506e-06*1j, 1.5271e-05 - 1.4326e-05*1j, 4.1151e-05 - 3.6713e-05*1j , + 3.9905e-04 - 6.3391e-04*1j, 1.4256e-03 - 4.2010e-04*1j, 1.7775e-03 - 1.1448e-03*1j, 2.6252e-03 + - 8.9501e-04*1j, 2.9812e-03 - 1.6801e-03*1j , 4.3656e-03 - 1.5903e-03*1j, 4.8418e-03 + - 2.4404e-03*1j, 6.9685e-03 - 2.6534e-03*1j, 7.6915e-03 - 3.5182e-03*1j, 1.0749e-02 + - 4.2291e-03*1j , 1.1902e-02 - 5.0055e-03*1j, 1.6024e-02 - 6.4526e-03*1j, 1.7878e-02 + - 7.0057e-03*1j, 2.3102e-02 - 9.4388e-03*1j, 2.6038e-02 - 9.6422e-03*1j , + 3.2280e-02 - 1.3269e-02*1j, 3.6789e-02 - 1.3061e-02*1j, 4.3841e-02 - 1.7982e-02*1j, 5.0495e-02 + - 1.7431e-02*1j, 5.8052e-02 - 2.3569e-02*1j , 6.7444e-02 - 2.2930e-02*1j, 7.5169e-02 + - 2.9981e-02*1j, 8.7819e-02 - 2.9736e-02*1j, 9.5427e-02 - 3.7136e-02*1j, 1.1167e-01 + - 3.8000e-02*1j , 1.1904e-01 - 4.4941e-02*1j, 1.3890e-01 - 4.7822e-02*1j, 1.4617e-01 + - 5.3309e-02*1j, 1.6926e-01 - 5.9221e-02*1j, 1.7695e-01 - 6.2182e-02*1j , + 2.0235e-01 - 7.2116e-02*1j, 2.1140e-01 - 7.1549e-02*1j, 2.3765e-01 - 8.6305e-02*1j, 2.4944e-01 + - 8.1456e-02*1j, 2.7453e-01 - 1.0146e-01*1j , 2.9088e-01 - 9.2017e-02*1j, 3.1227e-01 + - 1.1711e-01*1j, 3.3535e-01 - 1.0341e-01*1j, 3.5009e-01 - 1.3267e-01*1j, 3.8238e-01 + - 1.1587e-01*1j , 3.8713e-01 - 1.4742e-01*1j, 4.3146e-01 - 1.2974e-01*1j, 4.2233e-01 + - 1.6044e-01*1j, 4.8222e-01 - 1.4561e-01*1j, 4.5414e-01 - 1.7040e-01*1j , + 5.3510e-01 - 1.6460e-01*1j, 4.8020e-01 - 1.7358e-01*1j, 5.9455e-01 - 1.9170e-01*1j, 4.8669e-01 + - 1.5965e-01*1j, 6.9081e-01 - 2.6218e-01*1j , 3.1530e-01 + 9.3424e-02*1j, -7.1052e-01 + + 2.8833e-01*1j, -5.1861e-01 + 1.1433e-01*1j, -5.7535e-01 + 2.2141e-01*1j, -5.2124e-01 + + 1.3015e-01*1j , -5.1574e-01 + 1.9092e-01*1j, -4.9507e-01 + 1.3022e-01*1j, + -4.6700e-01 + 1.6704e-01*1j, -4.5921e-01 + 1.2586e-01*1j, -4.2136e-01 + 1.4550e-01*1j + , -4.1873e-01 + 1.1899e-01*1j, -3.7785e-01 + 1.2562e-01*1j, -3.7593e-01 + 1.1045e-01*1j, + -3.3620e-01 + 1.0737e-01*1j, -3.3244e-01 + 1.0068e-01*1j , -2.9648e-01 + 9.0865e-02*1j, + -2.8954e-01 + 9.0026e-02*1j, -2.5879e-01 + 7.6211e-02*1j, -2.4833e-01 + 7.8847e-02*1j, + -2.2331e-01 + 6.3414e-02*1j , -2.0968e-01 + 6.7517e-02*1j, -1.9019e-01 + 5.2395e-02*1j, + -1.7425e-01 + 5.6423e-02*1j, -1.5960e-01 + 4.2999e-02*1j, -1.4246e-01 + 4.5930e-02*1j + , -1.3169e-01 + 3.5031e-02*1j, -1.1454e-01 + 3.6352e-02*1j, -1.0661e-01 + 2.8282e-02*1j, + -9.0505e-02 + 2.7922e-02*1j, -8.4485e-02 + 2.2562e-02*1j , -7.0222e-02 + 2.0778e-02*1j, + -6.5365e-02 + 1.7714e-02*1j, -5.3441e-02 + 1.4956e-02*1j, -4.9242e-02 + 1.3619e-02*1j, + -3.9832e-02 + 1.0400e-02*1j , -3.6019e-02 + 1.0195e-02*1j, -2.9025e-02 + 6.9842e-03*1j, + -2.5513e-02 + 7.3869e-03*1j, -2.0639e-02 + 4.5335e-03*1j, -1.7457e-02 + 5.1469e-03*1j + , -1.4300e-02 + 2.8536e-03*1j, -1.1520e-02 + 3.4260e-03*1j, -9.6508e-03 + 1.7541e-03*1j, + -7.3304e-03 + 2.1628e-03*1j, -6.3552e-03 + 1.0661e-03*1j , -4.5025e-03 + 1.2798e-03*1j, + -4.1002e-03 + 6.5174e-04*1j, -2.6663e-03 + 6.8397e-04*1j, -2.5965e-03 + 4.0387e-04*1j, + -1.4935e-03 + 2.7171e-04*1j , -1.6079e-03 + 2.1239e-04*1j, 8.5832e-05 + 6.1758e-05*1j, 2.4841e-05 + + 1.8521e-05*1j, 9.8862e-06 + 7.4457e-06*1j, 3.4696e-06 + 2.6799e-06*1j , + 7.2346e-07 + 6.5333e-07*1j ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [224, 140] + rotation: 0 + state: enabled +- name: fine_freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Fine frequency correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '-100' + step: 1e-5 + stop: '100' + value: '10' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [216, 204] + rotation: 0 + state: enabled +- name: freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Frequency Error (normalized) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '-1' + step: 1e-7 + stop: '1' + value: '0.0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [392, 148] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '1' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [728, 148] + rotation: 0 + state: enabled +- name: horizontal_offset + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal offset + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: interpolatedHsize + value: '0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 148] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1446, 192] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1169, 85] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [984, 12] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: '' + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [72, 156] + rotation: 0 + state: enabled +- name: lines_offset + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical offset + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: Vsize + value: int(Vsize/2) + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 12] + rotation: 0 + state: enabled +- name: offset + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: 1024*2 + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1321, 227] + rotation: 0 + state: disabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [0, 76] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [208, 12] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(19.98e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [0, 140] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [680, 650] + rotation: 270 + state: disabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size/2) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [305, 662] + rotation: 270 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1173, 438] + rotation: 0 + state: enabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/test2_19980KHz_1920_1080.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [33, 354] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1011, 628] + rotation: 180 + state: enabled +- name: blocks_null_sink_0 + id: blocks_null_sink + parameters: + affinity: '' + alias: '' + bus_structure_sink: '[[0,],]' + comment: '' + num_inputs: '1' + type: float + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [519, 645] + rotation: 270 + state: disabled +- name: blocks_null_sink_0_0 + id: blocks_null_sink + parameters: + affinity: '' + alias: '' + bus_structure_sink: '[[0,],]' + comment: '' + num_inputs: '1' + type: float + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [135, 474] + rotation: 90 + state: disabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [274, 386] + rotation: 0 + state: enabled +- name: qtgui_time_sink_x_0 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: '' + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size) + srate: fft_size + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '""' + type: float + update_time: '0.10' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [440, 644] + rotation: 270 + state: disabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: fft_size + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '""' + type: float + update_time: '0.10' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [201, 466] + rotation: 0 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: int + value: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [166, 868] + rotation: 0 + state: true +- name: sync_detector_start + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: '' + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [758, 315] + rotation: 0 + state: disabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [542, 205] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size/1) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [555, 645] + rotation: 90 + state: disabled +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size/2) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [113, 645] + rotation: 90 + state: enabled +- name: tempest_fine_sampling_synchronization_0 + id: tempest_fine_sampling_synchronization + parameters: + Htotal: interpolatedHsize + Vtotal: Vsize + affinity: '' + alias: '' + comment: '' + correct_sampling: '1' + max_deviation: 100.0/interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + update_proba: 1.2e-1/(interpolatedHsize*Vsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [723, 434] + rotation: 0 + state: enabled +- name: tempest_frame_drop_0 + id: tempest_frame_drop + parameters: + Htotal: interpolatedHsize + Vtotal: Vsize + actual_samp_rate: samp_rate + affinity: '' + alias: '' + comment: '' + correct_sampling: '1' + max_deviation: 100.0/interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + update_proba: 1.2e-1/(interpolatedHsize*Vsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [466, 362] + rotation: 0 + state: disabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1175, 596] + rotation: 180 + state: enabled +- name: tempest_sync_detector_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1010, 410] + rotation: 0 + state: disabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: Vsize + display_width: Hsize + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [808, 596] + rotation: 180 + state: enabled + +connections: +- [FFT_autocorrelation_0, '0', tempest_fft_peak_fine_sampling_sync_0, '0'] +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [blocks_throttle_0, '0', FFT_autocorrelation_0_0, '0'] +- [blocks_throttle_0, '0', tempest_fine_sampling_synchronization_0, '0'] +- [blocks_throttle_0, '0', tempest_frame_drop_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0, + en] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [sync_detector_start, pressed, tempest_sync_detector_0, en] +- [tempest_fft_peak_fine_sampling_sync_0, '0', blocks_null_sink_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0, '0', qtgui_time_sink_x_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0, en, FFT_autocorrelation_0, en] +- [tempest_fft_peak_fine_sampling_sync_0, en, tempest_frame_drop_0, en] +- [tempest_fft_peak_fine_sampling_sync_0, en, tempest_sync_detector_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', blocks_null_sink_0_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fine_sampling_synchronization_0, '0', blocks_complex_to_mag_0, '0'] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0, '0', blocks_complex_to_mag_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/gr_tempest_v2-0-0_HDMI_fs_50MHz_fc_148-5MHz.grc b/examples/gr_tempest_v2-0-0_HDMI_fs_50MHz_fc_148-5MHz.grc new file mode 100644 index 0000000..23fba84 --- /dev/null +++ b/examples/gr_tempest_v2-0-0_HDMI_fs_50MHz_fc_148-5MHz.grc @@ -0,0 +1,1109 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [15, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1061, 35] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [859, 34] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 220] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [505, 34] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 156] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [656, 220] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 34] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 157] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 244] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '1' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 127] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 215] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 278] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 154] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: int + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [21, 235] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [332, 244] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [331, 126] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [225, 61] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [597, 634] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 470] + rotation: 0 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1336, 493] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1099, 491] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1496, 796] + rotation: 270 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [22, 185] + rotation: 0 + state: true +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '15.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [868, 623] + rotation: 270 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [874, 817] + rotation: 180 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [17, 92] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [706, 628] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1472, 578] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 473] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [240, 438] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1473, 1001] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0_0, '0', blocks_delay_0_0, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/gr_tempest_v2-0-0_HDMI_fs_50MHz_fc_300MHz.grc b/examples/gr_tempest_v2-0-0_HDMI_fs_50MHz_fc_300MHz.grc new file mode 100644 index 0000000..82c9568 --- /dev/null +++ b/examples/gr_tempest_v2-0-0_HDMI_fs_50MHz_fc_300MHz.grc @@ -0,0 +1,1109 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [15, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1061, 35] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [859, 34] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 220] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [505, 34] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 156] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [656, 220] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 34] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 157] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 244] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 127] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 215] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 278] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 154] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: int + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [21, 235] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [332, 244] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [331, 126] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [225, 61] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [648, 809] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 470] + rotation: 0 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1336, 493] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1099, 491] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1501, 796] + rotation: 270 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [22, 185] + rotation: 0 + state: true +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '19.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [919, 798] + rotation: 270 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [925, 992] + rotation: 180 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [17, 92] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [757, 803] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1472, 578] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 473] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [240, 438] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1474, 1001] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0_0, '0', blocks_delay_0_0, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/gr_tempest_v2-0-0_InferScreenResolution_fs_50MHz_fc_300MHz.grc b/examples/gr_tempest_v2-0-0_InferScreenResolution_fs_50MHz_fc_300MHz.grc new file mode 100644 index 0000000..c85e91c --- /dev/null +++ b/examples/gr_tempest_v2-0-0_InferScreenResolution_fs_50MHz_fc_300MHz.grc @@ -0,0 +1,782 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [52, 17] + rotation: 0 + state: enabled + +blocks: +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 427] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [296, 37] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [439, 37] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [192, 102] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [54, 214] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [192, 172] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: refr + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: '100' + value: '60' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [53, 97] + rotation: 0 + state: true +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [192, 35] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [640, 371] + rotation: 0 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: fft_size + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [425, 363] + rotation: 0 + state: enabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: '' + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '15.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 476] + rotation: 270 + state: enabled +- name: tempest_infer_screen_resolution_0 + id: tempest_infer_screen_resolution + parameters: + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 363] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [129, 331] + rotation: 0 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_infer_screen_resolution_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [tempest_infer_screen_resolution_0, '0', qtgui_time_sink_x_1, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/gr_tempest_v2-0-0_VGA_fs_50MHz_fc_300MHz.grc b/examples/gr_tempest_v2-0-0_VGA_fs_50MHz_fc_300MHz.grc new file mode 100644 index 0000000..3cf56c3 --- /dev/null +++ b/examples/gr_tempest_v2-0-0_VGA_fs_50MHz_fc_300MHz.grc @@ -0,0 +1,1112 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [15, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1061, 35] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [859, 34] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 220] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [505, 34] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 156] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [656, 220] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 34] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [649, 157] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 244] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [226, 127] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 215] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 278] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 154] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: int + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [21, 235] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [332, 244] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [331, 126] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [225, 61] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [648, 809] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [506, 470] + rotation: 0 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1336, 493] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1099, 491] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1501, 796] + rotation: 270 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [22, 185] + rotation: 0 + state: true +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '19.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [919, 798] + rotation: 270 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [17, 92] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [757, 803] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1472, 578] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 473] + rotation: 0 + state: enabled +- name: tempest_tempest_msgbtn_0 + id: tempest_tempest_msgbtn + parameters: + affinity: '' + alias: '' + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + maxoutbuf: '0' + minoutbuf: '0' + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [609, 1015] + rotation: 0 + state: true +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [240, 438] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1474, 1001] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0_0, '0', blocks_delay_0_0, '0'] +- [tempest_tempest_msgbtn_0, pressed, tempest_fft_peak_fine_sampling_sync_0_0, en] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/gr_tempest_v2-0-0_VGA_fs_50MHz_fc_300MHz_TakesRealPartOutput.grc b/examples/gr_tempest_v2-0-0_VGA_fs_50MHz_fc_300MHz_TakesRealPartOutput.grc new file mode 100644 index 0000000..ab22106 --- /dev/null +++ b/examples/gr_tempest_v2-0-0_VGA_fs_50MHz_fc_300MHz_TakesRealPartOutput.grc @@ -0,0 +1,1509 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [81, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [963, 571] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [766, 252] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [623, 168] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [350, 102] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [624, 64] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 178] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 104] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 126] + rotation: 0 + state: enabled +- name: ferror + id: variable + parameters: + comment: '' + value: (samp_rate*fine_freq)/(2*pi*interpolatedHsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1114, 42] + rotation: 0 + state: true +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [592, 224] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: '[-6.13e-05-1.22e-05j, + + 6.18e-04-2.02e-04j, + + 3.84e-03-2.43e-03j, + + 5.50e-03-3.87e-03j, + + 7.65e-03-5.51e-03j, + + 8.36e-03-6.47e-03j, + + 3.42e-03-3.78e-03j, + + -7.81e-03+2.35e-03j, + + -3.86e-02+2.21e-02j, + + -8.12e-02+4.68e-02j, + + -1.62e-01+9.94e-02j, + + -2.48e-01+1.48e-01j, + + -3.92e-01+2.43e-01j, + + -5.04e-01+2.99e-01j, + + -7.22e-01+4.49e-01j, + + -6.65e-01+3.56e-01j, + + 7.83e-01-4.68e-01j, + + 6.76e-01-3.60e-01j, + + 5.19e-01-2.92e-01j, + + 3.70e-01-1.98e-01j, + + 2.48e-01-1.39e-01j, + + 1.48e-01-8.02e-02j, + + 7.74e-02-4.50e-02j, + + 3.09e-02-1.83e-02j, + + 4.68e-03-4.89e-03j, + + -6.43e-03+1.92e-03j, + + -9.85e-03+4.10e-03j, + + -8.23e-03+3.73e-03j, + + -5.86e-03+2.73e-03j, + + -3.57e-03+1.94e-03j, + + -1.81e-04+2.41e-04j, + + ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [975, 120] + rotation: 0 + state: enabled +- name: fine_freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Sine multiply Freq correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '-50000' + step: '0.1' + stop: '50000' + value: '19215.22' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [972, 5] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [207, 318] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 7] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [622, 116] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 64] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '-1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 6] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [68, 105] + rotation: 0 + state: enabled +- name: ratio_correct + id: variable + parameters: + comment: '' + value: (1.0/(1+0.000935)) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [157, 127] + rotation: 0 + state: true +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [77, 317] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [73, 175] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [509, 1038] + rotation: 270 + state: enabled +- name: analog_sig_source_x_0_0 + id: analog_sig_source_x + parameters: + affinity: '' + alias: '' + amp: '1' + comment: '' + freq: -fine_freq + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + phase: '0' + samp_rate: samp_rate + type: complex + waveform: analog.GR_COS_WAVE + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1147, 819] + rotation: 0 + state: disabled +- name: blocks_complex_to_arg_0 + id: blocks_complex_to_arg + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [787, 359] + rotation: 0 + state: disabled +- name: blocks_complex_to_real_0 + id: blocks_complex_to_real + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1563, 705] + rotation: 0 + state: disabled +- name: blocks_delay_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1164, 685] + rotation: 0 + state: disabled +- name: blocks_delay_1 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [512, 600] + rotation: 90 + state: disabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/DEMO_VGA_recording_1080p_60Hz_50MHz.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [69, 626] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1735, 1082] + rotation: 270 + state: disabled +- name: blocks_keep_one_in_n_0 + id: blocks_keep_one_in_n + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + n: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [392, 840.0] + rotation: 0 + state: true +- name: blocks_multiply_conjugate_cc_0 + id: blocks_multiply_conjugate_cc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [470, 392] + rotation: 90 + state: disabled +- name: blocks_multiply_xx_0_0 + id: blocks_multiply_xx + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_inputs: '2' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1385, 689] + rotation: 0 + state: disabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [271, 650] + rotation: 0 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [87, 242] + rotation: 0 + state: true +- name: interp_fir_filter_xxx_1 + id: interp_fir_filter_xxx + parameters: + affinity: '' + alias: '' + comment: '' + interp: '1' + maxoutbuf: '0' + minoutbuf: '0' + samp_delay: '0' + taps: filtro_ecualizador_1st + type: ccc + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [627, 665] + rotation: 0 + state: disabled +- name: qtgui_time_sink_x_0 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'True' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@0 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: '1024' + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '""' + type: float + update_time: '0.5' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Phase difference (rad). + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [963, 352] + rotation: 0 + state: disabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '20.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '3.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [756, 1022] + rotation: 270 + state: enabled +- name: single_pole_iir_filter_xx_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: '0.001' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [578, 355] + rotation: 0 + state: disabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [353, 8] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [599, 1018] + rotation: 90 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1711, 893] + rotation: 270 + state: disabled +- name: tempest_sync_detector_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 817] + rotation: 0 + state: disabled +- name: tempest_tempest_msgbtn_0 + id: tempest_tempest_msgbtn + parameters: + affinity: '' + alias: '' + comment: '' + gui_hint: tab_m@1 + label: 'Ratio Finder toggle ON or OFF (FFT peaks). ' + maxoutbuf: '0' + minoutbuf: '0' + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [309, 999] + rotation: 270 + state: true +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [82, 742] + rotation: 0 + state: disabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1711, 1227] + rotation: 270 + state: disabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [analog_sig_source_x_0_0, '0', blocks_multiply_xx_0_0, '1'] +- [blocks_complex_to_arg_0, '0', qtgui_time_sink_x_0, '0'] +- [blocks_complex_to_real_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0, '0', blocks_multiply_xx_0_0, '0'] +- [blocks_delay_1, '0', blocks_multiply_conjugate_cc_0, '1'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [blocks_keep_one_in_n_0, '0', FFT_autocorrelation_0_0, '0'] +- [blocks_keep_one_in_n_0, '0', blocks_delay_1, '0'] +- [blocks_keep_one_in_n_0, '0', blocks_multiply_conjugate_cc_0, '0'] +- [blocks_keep_one_in_n_0, '0', interp_fir_filter_xxx_1, '0'] +- [blocks_multiply_conjugate_cc_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_multiply_xx_0_0, '0', blocks_complex_to_real_0, '0'] +- [blocks_throttle_0, '0', blocks_keep_one_in_n_0, '0'] +- [interp_fir_filter_xxx_1, '0', tempest_sync_detector_0, '0'] +- [single_pole_iir_filter_xx_0, '0', blocks_complex_to_arg_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, rate, uhd_usrp_source_0, command] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0, '0', blocks_delay_0, '0'] +- [tempest_tempest_msgbtn_0, pressed, tempest_fft_peak_fine_sampling_sync_0_0, en] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/infer_screen_example.grc b/examples/infer_screen_example.grc new file mode 100644 index 0000000..2d5412c --- /dev/null +++ b/examples/infer_screen_example.grc @@ -0,0 +1,844 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [417, 14] + rotation: 0 + state: enabled + +blocks: +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 427] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [402, 131] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [545, 133] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [688, 15] + rotation: 0 + state: true +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [298, 106] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [205, 38] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: refr + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: '100' + value: '60' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [576, 23] + rotation: 0 + state: true +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [791, 15] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [640, 371] + rotation: 0 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: fft_size + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [425, 363] + rotation: 0 + state: enabled +- name: blocks_file_sink_0 + id: blocks_file_sink + parameters: + affinity: '' + alias: '' + append: 'False' + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/autoespia.dat + type: complex + unbuffered: 'False' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [305, 525] + rotation: 0 + state: disabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/autoespia.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [57, 198] + rotation: 0 + state: disabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [306, 230] + rotation: 0 + state: disabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: '' + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '15.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 476] + rotation: 270 + state: enabled +- name: tempest_infer_screen_resolution_0 + id: tempest_infer_screen_resolution + parameters: + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 363] + rotation: 0 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [129, 331] + rotation: 0 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_infer_screen_resolution_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0, '0'] +- [tempest_infer_screen_resolution_0, '0', qtgui_time_sink_x_1, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] +- [uhd_usrp_source_0, '0', blocks_file_sink_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/manual_simulated_tempest_example.grc b/examples/manual_simulated_tempest_example.grc index 4bf908c..e28a850 100644 --- a/examples/manual_simulated_tempest_example.grc +++ b/examples/manual_simulated_tempest_example.grc @@ -1,6 +1,7 @@ options: parameters: author: '' + catch_exceptions: 'True' category: '[GRC Hier Blocks]' cmake_opt: '' comment: '' @@ -123,8 +124,10 @@ blocks: gui_hint: 1,0,1,1 label: Sampling error min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '-0.1' step: 10e-6 stop: '0.1' @@ -144,8 +147,10 @@ blocks: gui_hint: 0,0,1,1 label: Frequency Error (normalized) min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '-1' step: 1e-5 stop: '1' @@ -165,8 +170,10 @@ blocks: gui_hint: 1,1,1,1 label: Harmonic min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '1' step: '1' stop: '10' @@ -186,8 +193,10 @@ blocks: gui_hint: 3,0,1,1 label: Horizontal offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: interpolatedHsize @@ -237,6 +246,7 @@ blocks: label4: '' labels: '[]' num_opts: '2' + option0: '0' option1: '1' option2: '2' option3: '3' @@ -260,8 +270,10 @@ blocks: gui_hint: 3,1,1,1 label: Vertical offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: Vsize @@ -281,8 +293,10 @@ blocks: gui_hint: 0,1,1,1 label: Noise Power min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '0' step: 1e-4 stop: 2e-2 @@ -685,3 +699,4 @@ connections: metadata: file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/manual_tempest_example.grc b/examples/manual_tempest_example.grc index b8ccbdc..2215c29 100644 --- a/examples/manual_tempest_example.grc +++ b/examples/manual_tempest_example.grc @@ -1,6 +1,7 @@ options: parameters: author: '' + catch_exceptions: 'True' category: '[GRC Hier Blocks]' cmake_opt: '' comment: '' @@ -51,8 +52,10 @@ blocks: gui_hint: 0, 0, 1,1 label: Horizontal resolution (total) min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: int(4096*1.5) @@ -84,8 +87,10 @@ blocks: gui_hint: 0, 1, 1,1 label: Vertical resolution (total) min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: int(2160*1.5) @@ -105,8 +110,10 @@ blocks: gui_hint: 3,1,1,1 label: Harmonic min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '1' step: '1' stop: '10' @@ -126,8 +133,10 @@ blocks: gui_hint: 1,0,1,2 label: Horizontal offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: interpolatedHsize @@ -165,6 +174,7 @@ blocks: label4: '' labels: '[]' num_opts: '2' + option0: '0' option1: '1' option2: '2' option3: '3' @@ -188,8 +198,10 @@ blocks: gui_hint: 2,0,1,2 label: Vertical offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: Vsize @@ -221,8 +233,10 @@ blocks: gui_hint: 3,0,1,1 label: Refresh Rate (Hz) min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '0' step: '1' stop: '240' @@ -527,38 +541,70 @@ blocks: clock_source6: '' clock_source7: '' comment: '' - dc_offs_enb0: '""' - dc_offs_enb1: '""' - dc_offs_enb10: '""' - dc_offs_enb11: '""' - dc_offs_enb12: '""' - dc_offs_enb13: '""' - dc_offs_enb14: '""' - dc_offs_enb15: '""' - dc_offs_enb16: '""' - dc_offs_enb17: '""' - dc_offs_enb18: '""' - dc_offs_enb19: '""' - dc_offs_enb2: '""' - dc_offs_enb20: '""' - dc_offs_enb21: '""' - dc_offs_enb22: '""' - dc_offs_enb23: '""' - dc_offs_enb24: '""' - dc_offs_enb25: '""' - dc_offs_enb26: '""' - dc_offs_enb27: '""' - dc_offs_enb28: '""' - dc_offs_enb29: '""' - dc_offs_enb3: '""' - dc_offs_enb30: '""' - dc_offs_enb31: '""' - dc_offs_enb4: '""' - dc_offs_enb5: '""' - dc_offs_enb6: '""' - dc_offs_enb7: '""' - dc_offs_enb8: '""' - dc_offs_enb9: '""' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default dev_addr: '""' dev_args: '""' gain0: '50' @@ -593,38 +639,102 @@ blocks: gain7: '0' gain8: '0' gain9: '0' - iq_imbal_enb0: '""' - iq_imbal_enb1: '""' - iq_imbal_enb10: '""' - iq_imbal_enb11: '""' - iq_imbal_enb12: '""' - iq_imbal_enb13: '""' - iq_imbal_enb14: '""' - iq_imbal_enb15: '""' - iq_imbal_enb16: '""' - iq_imbal_enb17: '""' - iq_imbal_enb18: '""' - iq_imbal_enb19: '""' - iq_imbal_enb2: '""' - iq_imbal_enb20: '""' - iq_imbal_enb21: '""' - iq_imbal_enb22: '""' - iq_imbal_enb23: '""' - iq_imbal_enb24: '""' - iq_imbal_enb25: '""' - iq_imbal_enb26: '""' - iq_imbal_enb27: '""' - iq_imbal_enb28: '""' - iq_imbal_enb29: '""' - iq_imbal_enb3: '""' - iq_imbal_enb30: '""' - iq_imbal_enb31: '""' - iq_imbal_enb4: '""' - iq_imbal_enb5: '""' - iq_imbal_enb6: '""' - iq_imbal_enb7: '""' - iq_imbal_enb8: '""' - iq_imbal_enb9: '""' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default lo_export0: 'False' lo_export1: 'False' lo_export10: 'False' @@ -692,38 +802,6 @@ blocks: maxoutbuf: '0' minoutbuf: '0' nchan: '1' - norm_gain0: 'False' - norm_gain1: 'False' - norm_gain10: 'False' - norm_gain11: 'False' - norm_gain12: 'False' - norm_gain13: 'False' - norm_gain14: 'False' - norm_gain15: 'False' - norm_gain16: 'False' - norm_gain17: 'False' - norm_gain18: 'False' - norm_gain19: 'False' - norm_gain2: 'False' - norm_gain20: 'False' - norm_gain21: 'False' - norm_gain22: 'False' - norm_gain23: 'False' - norm_gain24: 'False' - norm_gain25: 'False' - norm_gain26: 'False' - norm_gain27: 'False' - norm_gain28: 'False' - norm_gain29: 'False' - norm_gain3: 'False' - norm_gain30: 'False' - norm_gain31: 'False' - norm_gain4: 'False' - norm_gain5: 'False' - norm_gain6: 'False' - norm_gain7: 'False' - norm_gain8: 'False' - norm_gain9: 'False' num_mboards: '1' otw: '' rx_agc0: Default @@ -768,6 +846,7 @@ blocks: sd_spec6: '' sd_spec7: '' show_lo_controls: 'False' + start_time: '-1.0' stream_args: '' stream_chans: '[]' sync: sync @@ -845,3 +924,4 @@ connections: metadata: file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/manual_tempest_example_FFT_peaks_hd.grc b/examples/manual_tempest_example_FFT_peaks_hd.grc new file mode 100644 index 0000000..c009e59 --- /dev/null +++ b/examples/manual_tempest_example_FFT_peaks_hd.grc @@ -0,0 +1,1610 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [81, 12] + rotation: 0 + state: enabled + +blocks: +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1170, 137] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1184, 360] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1171, 33] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1284, 85] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1317, 354] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1284, 33] + rotation: 0 + state: enabled +- name: delay + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Hsync delay + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(Hsize/float(px_rate)*samp_rate)*2 + value: int(136/float(px_rate)*samp_rate) + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [467, 12] + rotation: 0 + state: enabled +- name: delay_fase + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Delay fase + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: 2*interpolatedHsize*Vsize + value: interpolatedHsize*Vsize + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [704, 12] + rotation: 0 + state: enabled +- name: epsilon + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Fine sampling correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: (interpolatedHsize-2)/float(interpolatedHsize)-1 + step: 1e-7 + stop: (interpolatedHsize+2)/float(interpolatedHsize)-1 + value: '0.00101' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1016, 84] + rotation: 0 + state: enabled +- name: eq_fir_1080p + id: variable + parameters: + comment: '' + value: '[-0.0004 + 0j,-0.0000 + 0.0000j,-0.0004 - 0.0000j,-0.0000 + 0.0001j,-0.0004 + - 0.0001j,-0.0000 + 0.0001j,-0.0004 - 0.0001j,-0.0000 + 0.0002j,-0.0004 + - 0.0001j,-0.0001 + 0.0002j,-0.0003 - 0.0001j,-0.0001 + 0.0003j,-0.0003 + - 0.0001j,-0.0002 + 0.0003j,-0.0003 - 0.0001j,-0.0002 + 0.0004j,-0.0002 + - 0.0001j,-0.0002 + 0.0004j,-0.0002 - 0.0001j,-0.0003 + 0.0004j,-0.0001 + - 0.0001j,-0.0003 + 0.0004j,-0.0001 - 0.0001j,-0.0004 + 0.0004j,-0.0000 + - 0.0000j,-0.0004 + 0.0004j, 0.0000 + 0.0000j,-0.0005 + 0.0004j, 0.0000 + + 0.0001j,-0.0005 + 0.0004j, 0.0001 + 0.0001j,-0.0006 + 0.0003j, 0.0001 + + 0.0002j,-0.0006 + 0.0003j, 0.0001 + 0.0002j,-0.0006 + 0.0003j, 0.0001 + + 0.0003j,-0.0006 + 0.0002j, 0.0001 + 0.0004j,-0.0006 + 0.0002j, 0.0001 + + 0.0005j,-0.0006 + 0.0001j, 0.0001 + 0.0005j,-0.0006 + 0.0001j, 0.0001 + + 0.0006j,-0.0006 + 0.0000j, 0.0000 + 0.0007j,-0.0006 - 0.0000j,-0.0000 + + 0.0008j,-0.0005 - 0.0000j,-0.0001 + 0.0008j,-0.0005 - 0.0001j,-0.0002 + + 0.0009j,-0.0004 - 0.0001j,-0.0002 + 0.0009j,-0.0004 - 0.0001j,-0.0003 + + 0.0010j,-0.0003 - 0.0001j,-0.0004 + 0.0010j,-0.0002 - 0.0001j,-0.0005 + + 0.0010j,-0.0002 - 0.0001j,-0.0006 + 0.0011j,-0.0001 - 0.0001j,-0.0007 + + 0.0011j,-0.0000 - 0.0000j,-0.0008 + 0.0010j, 0.0000 + 0.0000j,-0.0009 + + 0.0010j, 0.0001 + 0.0001j,-0.0010 + 0.0010j, 0.0002 + 0.0002j,-0.0011 + + 0.0009j, 0.0002 + 0.0003j,-0.0011 + 0.0009j, 0.0003 + 0.0004j,-0.0012 + + 0.0008j, 0.0003 + 0.0005j,-0.0013 + 0.0007j, 0.0003 + 0.0006j,-0.0013 + + 0.0006j, 0.0003 + 0.0007j,-0.0014 + 0.0005j, 0.0003 + 0.0008j,-0.0014 + + 0.0004j, 0.0003 + 0.0010j,-0.0014 + 0.0003j, 0.0002 + 0.0011j,-0.0014 + + 0.0002j, 0.0002 + 0.0013j,-0.0015 + 0.0002j, 0.0001 + 0.0019j,-0.0038 + + 0.0001j, 0.0001 + 0.0198j, 0.0603 + 0.0018j, 0.0091 - 0.1418j,-0.2643 + - 0.0260j,-0.0543 + 0.4093j, 0.5602 + 0.0937j, 0.1441 - 0.7130j,-0.8669 + - 0.2059j,-0.2777 + 1.0157j, 1.1535 + 0.3576j, 0.4438 - 1.2773j,-1.3776 + - 0.5314j,-0.6122 + 1.4403j, 1.4636 + 0.6813j, 0.7425 - 1.4640j,-1.4577 + - 0.8023j,-0.8613 + 1.4470j, 1.4300 + 0.9179j, 0.9747 - 1.4114j,-1.3954 + - 1.0349j,-1.0955 + 1.3775j, 1.3531 + 1.1528j, 1.2096 - 1.3263j,-1.3019 + - 1.2703j,-1.3319 + 1.2759j, 1.2436 + 1.3891j, 1.4451 - 1.2084j,-1.1749 + - 1.5056j,-1.5673 + 1.1402j, 1.0995 + 1.6238j, 1.6782 - 1.0555j,-1.0126 + - 1.7375j,-1.7986 + 0.9685j, 0.9189 + 1.8538j, 1.9057 - 0.8658j,-0.8130 + - 1.9627j,-2.0224 + 0.7588j, 0.6998 + 2.0754j, 2.1239 - 0.6372j,-0.5739 + - 2.1776j,-2.2347 + 0.5090j, 0.4399 + 2.2848j, 2.3289 - 0.3674j,-0.2933 + - 2.3781j,-2.4316 + 0.2169j, 0.1370 + 2.4778j, 2.5165 - 0.0541j, 0.0314 + - 2.5599j,-2.6085 - 0.1201j,-0.2118 + 2.6496j, 2.6819 + 0.3057j, 0.4032 + - 2.7181j,-2.7604 - 0.5052j,-0.6097 + 2.7952j, 2.8196 + 0.7155j, 0.8257 + - 2.8472j,-2.8814 - 0.9421j,-1.0608 + 2.9083j, 2.9235 + 1.1796j, 1.3035 + - 2.9407j,-2.9648 - 1.4358j,-1.5705 + 2.9820j, 2.9863 + 1.7038j, 1.8430 + - 2.9910j,-3.0027 - 1.9930j,-2.1461 + 3.0078j, 2.9988 + 2.2962j, 2.4527 + - 2.9886j,-2.9849 - 2.6231j,-2.7977 + 2.9749j, 2.9497 + 2.9679j, 3.1448 + - 2.9214j,-2.8985 - 3.3394j,-3.5403 + 2.8692j, 2.8239 + 3.7352j, 3.9374 + - 2.7730j,-2.7258 - 4.1619j,-4.3958 + 2.6715j, 2.6001 + 4.6228j, 4.8579 + - 2.5204j,-2.4414 - 5.1213j,-5.3988 + 2.3536j, 2.2471 + 5.6694j, 5.9499 + - 2.1289j,-2.0065 - 6.2670j,-6.6056 + 1.8717j, 1.7156 + 6.9393j, 7.2870 + - 1.5427j,-1.3575 - 7.6836j,-8.1142 + 1.1528j, 0.9212 + 8.5461j, 9.0016 + - 0.6640j,-0.3802 - 9.5270j,10.1094 + 0.0620j,-0.2958 + 10.7103j,11.3586 + + 0.6978j, 1.1560 - 12.1183j,12.9856 - 1.6826j,-2.2839 + 13.9218j,14.9722 + + 2.9782j, 3.8038 - 16.2383j,17.7577 - 4.7971j,-5.9920 + 19.5370j,21.6829 + + 7.4594j, 9.3348 - 24.4225j,28.1470 - 11.8617j,15.4831 + 33.5314j,40.9709 + + 20.6230j,26.6688 - 48.8079j,52.0219 - 30.7484j,28.2403 + 44.2950j,23.3522 + + 16.0214j,-3.8869 + 5.2747j,30.8124 + 24.3519j,37.7829 - 44.6248j,45.5825 + - 41.3136j,37.7025 + 38.8773j,30.6655 + 31.8158j,26.8368 - 24.1739j,19.7007 + - 23.4135j,21.0374 + 16.5218j,14.0970 + 19.2534j,17.8348 - 12.1558j,10.5339 + - 16.6349j,15.6016 + 9.1571j, 8.0025 + 14.7531j,14.0496 - 7.0180j,-6.1378 + - 13.4003j,12.7899 + 5.3438j, 4.6462 + 12.2684j,11.8264 - 4.0280j,-3.4572 + - 11.3969j,10.9712 + 2.9277j, 2.4483 + 10.5981j,10.2775 - 2.0116j,-1.6020 + - 9.9561j,-9.6259 + 1.2172j, 0.8612 + 9.3302j, 9.0735 - 0.5295j,-0.2163 + - 8.8117j,-8.5362 - 0.0786j,-0.3561 + 8.2845j, 8.0638 + 0.6197j, 0.8691 + - 7.8372j,-7.5953 - 1.1029j,-1.3255 + 7.3701j, 7.1703 + 1.5410j, 1.7448 + - 6.9655j,-6.7452 - 1.9337j,-2.1150 + 6.5365j, 6.3493 + 2.2938j, 2.4627 + - 6.1581j,-5.9524 - 2.6167j,-2.7650 + 5.7545j, 5.5747 + 2.9141j, 3.0547 + - 5.3922j,-5.1967 - 3.1801j,-3.3007 + 5.0061j, 4.8306 + 3.4243j, 3.5409 + - 4.6538j,-4.4656 - 3.6420j,-3.7384 + 4.2804j, 4.1076 + 3.8393j, 3.9345 + - 3.9345j,-3.7519 - 4.0141j,-4.0887 + 3.5709j, 3.3999 + 4.1688j, 4.2445 + - 3.2294j,-3.0514 - 4.3046j,-4.3591 + 2.8742j, 2.7047 + 4.4197j, 4.4769 + - 2.5361j,-2.3622 - 4.5189j,-4.5547 + 2.1885j, 2.0207 + 4.5966j, 4.6361 + - 1.8540j,-1.6839 - 4.6609j,-4.6790 + 1.5140j, 1.3482 + 4.7029j, 4.7252 + - 1.1836j,-1.0173 - 4.7335j,-4.7347 + 0.8515j, 0.6884 + 4.7411j, 4.7465 + - 0.5264j,-0.3642 - 4.7389j,-4.7239 + 0.2030j, 0.0434 + 4.7133j, 4.7021 + + 0.1154j, 0.2730 - 4.6788j,-4.6481 - 0.4290j,-0.5844 + 4.6211j, 4.5934 + + 0.7391j, 0.8915 - 4.5546j,-4.5088 - 1.0416j,-1.1917 + 4.4659j, 4.4220 + + 1.3414j, 1.4877 - 4.3679j,-4.3074 - 1.6313j,-1.7754 + 4.2492j, 4.1893 + + 1.9189j, 2.0580 - 4.1200j,-4.0452 - 2.1942j,-2.3315 + 3.9723j, 3.8968 + + 2.4676j, 2.5985 - 3.8124j,-3.7237 - 2.7264j,-2.8561 + 3.6366j, 3.5461 + + 2.9838j, 3.1047 - 3.4467j,-3.3444 - 3.2235j,-3.3448 + 3.2438j, 3.1387 + + 3.4630j, 3.5729 - 3.0251j,-2.9091 - 3.6809j,-3.7913 + 2.7939j, 2.6757 + + 3.9000j, 4.0096 - 2.5563j,-2.4240 - 4.1010j,-4.0498 + 2.2128j, 1.8310 + + 3.6375j, 2.7604 - 1.2746j,-0.6875 - 1.6313j,-0.6705 + 0.2563j, 0.0515 + + 0.1497j, 0.0019 - 0.0006j, 0.0015 + 0.0056j, 0.0078 - 0.0018j,-0.0011 + - 0.0057j, 0.0080 - 0.0013j,-0.0010 - 0.0077j, 0.0073 - 0.0007j,-0.0005 + - 0.0080j, 0.0065 - 0.0002j, 0.0000 - 0.0078j, 0.0057 + 0.0002j, 0.0006 + - 0.0076j, 0.0050 + 0.0005j, 0.0010 - 0.0073j, 0.0044 + 0.0008j, 0.0015 + - 0.0071j, 0.0038 + 0.0009j, 0.0019 - 0.0068j, 0.0032 + 0.0010j, 0.0023 + - 0.0065j, 0.0027 + 0.0011j, 0.0027 - 0.0062j, 0.0022 + 0.0011j, 0.0031 + - 0.0059j, 0.0018 + 0.0010j, 0.0034 - 0.0056j, 0.0014 + 0.0009j, 0.0037 + - 0.0052j, 0.0010 + 0.0008j, 0.0040 - 0.0049j, 0.0007 + 0.0006j, 0.0042 + - 0.0045j, 0.0004 + 0.0004j, 0.0044 - 0.0042j, 0.0002 + 0.0002j, 0.0046 + - 0.0038j,-0.0001 - 0.0001j, 0.0047 - 0.0034j,-0.0002 - 0.0003j, 0.0048 + - 0.0030j,-0.0003 - 0.0006j, 0.0049 - 0.0026j,-0.0004 - 0.0009j, 0.0049 + - 0.0022j,-0.0005 - 0.0012j, 0.0049 - 0.0018j,-0.0005 - 0.0015j, 0.0048 + - 0.0014j,-0.0004 - 0.0017j, 0.0047 - 0.0010j,-0.0004 - 0.0020j, 0.0046 + - 0.0007j,-0.0003 - 0.0023j, 0.0044 - 0.0004j,-0.0001 - 0.0025j, 0.0043 + - 0.0001j, 0.0001 - 0.0027j, 0.0040 + 0.0002j, 0.0003 - 0.0029j, 0.0038 + + 0.0005j, 0.0005 - 0.0030j, 0.0035 + 0.0007j, 0.0007 - 0.0032j, 0.0033 + + 0.0009j, 0.0010 - 0.0033j, 0.0030 + 0.0010j, 0.0012 - 0.0033j, 0.0027 + + 0.0011j, 0.0015 - 0.0033j, 0.0024 + 0.0012j, 0.0018 - 0.0033j, 0.0021 + + 0.0012j, 0.0021 - 0.0033j, 0.0018 + 0.0012j, 0.0023 - 0.0032j, 0.0015 + + 0.0012j, 0.0026 - 0.0031j, 0.0012 + 0.0011j, 0.0029 - 0.0030j, 0.0010 + + 0.0010j, 0.0031 - 0.0028j, 0.0007 + 0.0009j, 0.0033 - 0.0026j, 0.0005 + + 0.0007j, 0.0035 - 0.0024j, 0.0003 + 0.0005j, 0.0036 - 0.0022j, 0.0002 + + 0.0003j, 0.0038 - 0.0019j, 0.0001 + 0.0001j, 0.0039 - 0.0016j,-0.0000 + - 0.0001j, 0.0039 - 0.0014j,-0.0001 - 0.0003j, 0.0040 - 0.0011j,-0.0001 + - 0.0006j, 0.0040 - 0.0008j,-0.0001 - 0.0008j, 0.0039 - 0.0005j,-0.0001 + - 0.0011j, 0.0039 - 0.0002j,-0.0000 - 0.0013j, 0.0038 + 0.0000j, 0.0001 + - 0.0015j, 0.0037 + 0.0003j, 0.0002 - 0.0017j, 0.0035 + 0.0005j, 0.0003 + - 0.0019j, 0.0033 + 0.0007j, 0.0005 - 0.0020j, 0.0032 + 0.0009j, 0.0007 + - 0.0022j, 0.0029 + 0.0010j, 0.0009 - 0.0023j, 0.0027 + 0.0012j, 0.0011 + - 0.0024j, 0.0025 + 0.0013j, 0.0014 - 0.0024j, 0.0022 + 0.0013j, 0.0016 + - 0.0024j, 0.0020 + 0.0014j, 0.0018 - 0.0024j, 0.0017 + 0.0014j, 0.0021 + - 0.0024j, 0.0015 + 0.0014j, 0.0023 - 0.0023j, 0.0013 + 0.0013j, 0.0025 + - 0.0022j, 0.0010 + 0.0012j, 0.0027 - 0.0021j, 0.0008 + 0.0011j, 0.0029 + - 0.0020j, 0.0006 + 0.0010j, 0.0031 - 0.0018j, 0.0005 + 0.0009j, 0.0033 + - 0.0016j, 0.0003 + 0.0007j, 0.0034 - 0.0014j, 0.0002 + 0.0005j, 0.0035 + - 0.0012j, 0.0001 + 0.0003j, 0.0036 - 0.0009j, 0.0000 + 0.0001j, 0.0036 + - 0.0007j,-0.0000 - 0.0001j, 0.0036 - 0.0004j,-0.0000 - 0.0004j, 0.0036 + - 0.0002j,-0.0000 - 0.0006j, 0.0036 + 0.0001j, 0.0000 - 0.0008j, 0.0035 + + 0.0003j, 0.0001 - 0.0010j, 0.0034 + 0.0005j, 0.0002 - 0.0012j, 0.0033 + + 0.0007j, 0.0004 - 0.0014j, 0.0032 + 0.0009j, 0.0005 - 0.0015j, 0.0030 + + 0.0011j, 0.0007 - 0.0017j, 0.0028 + 0.0013j, 0.0009 - 0.0018j, 0.0026 + + 0.0014j, 0.0011 - 0.0019j, 0.0024 + 0.0015j, 0.0013 - 0.0019j, 0.0022 + + 0.0016j, 0.0015 - 0.0020j, 0.0019 + 0.0016j, 0.0017 - 0.0020j, 0.0017 + + 0.0016j, 0.0020 - 0.0019j, 0.0015 + 0.0016j, 0.0022 - 0.0019j, 0.0013 + + 0.0016j, 0.0024 - 0.0018j, 0.0011 + 0.0015j, 0.0026 - 0.0017j, 0.0008 + + 0.0014j, 0.0028 - 0.0016j, 0.0007 + 0.0013j, 0.0030 - 0.0014j, 0.0005 + + 0.0012j, 0.0031 - 0.0012j, 0.0003 + 0.0010j, 0.0033 - 0.0010j, 0.0002 + + 0.0008j, 0.0034 - 0.0008j, 0.0001 + 0.0006j, 0.0035 - 0.0006j, 0.0001 + + 0.0004j, 0.0035 - 0.0004j, 0.0000 + 0.0002j, 0.0036 - 0.0001j]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1281, 156] + rotation: 0 + state: true +- name: fft_size + id: variable + parameters: + comment: '' + value: 4096*512 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1209, 228] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: "[-3.11363682e-06+6.75278918e-06j, 2.23797433e-05+3.63850305e-04j,\n \ + \ 1.24424796e-04+2.07552626e-03j, 9.13369821e-05+1.23922328e-03j,\n \ + \ 9.17470541e-06-1.27599772e-03j, -1.89672336e-04-7.66449364e-03j,\n \ + \ -6.04326364e-04-2.07456042e-02j, -1.03016890e-03-4.52780337e-02j,\n \ + \ -2.24322298e-03-7.65338416e-02j, -2.59317061e-03-1.35562197e-01j,\n \ + \ -5.05937146e-03-1.88184719e-01j, -4.40754770e-03-2.95364441e-01j,\n \ + \ -8.83183526e-03-3.55251606e-01j, -5.10069889e-03-5.21066895e-01j,\n \ + \ -1.41464771e-02-5.38323401e-01j, 2.42260390e-03-8.16748190e-01j,\n \ + \ 4.49687679e-02+2.68517170e-01j, -1.78853630e-02+7.82072975e-01j,\n \ + \ -4.44448737e-03+4.96178030e-01j, -1.02738240e-02+4.81143615e-01j,\n \ + \ -4.81582961e-03+3.17597516e-01j, -6.18209100e-03+2.63011491e-01j,\n \ + \ -3.16653758e-03+1.61327366e-01j, -3.01959070e-03+1.15054664e-01j,\n \ + \ -1.44674044e-03+6.17245262e-02j, -9.99648902e-04+3.55652006e-02j,\n \ + \ -3.99929733e-04+1.49286935e-02j, -9.70523497e-05+4.64566966e-03j,\n \ + \ 4.45207677e-05+1.15474691e-04j, 1.16728796e-04-1.83264974e-03j,\n \ + \ 9.57920774e-05-1.59212307e-03j, -3.78999089e-06+4.47966583e-05j]" + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1024, 228] + rotation: 0 + state: enabled +- name: filtro_ecualizador_viejo + id: variable + parameters: + comment: '' + value: '[ 3.5209e-07 - 1.0836e-06*1j, 1.4076e-06 - 2.3919e-06*1j, 5.9650e-06 + - 6.1506e-06*1j, 1.5271e-05 - 1.4326e-05*1j, 4.1151e-05 - 3.6713e-05*1j , + 3.9905e-04 - 6.3391e-04*1j, 1.4256e-03 - 4.2010e-04*1j, 1.7775e-03 - 1.1448e-03*1j, 2.6252e-03 + - 8.9501e-04*1j, 2.9812e-03 - 1.6801e-03*1j , 4.3656e-03 - 1.5903e-03*1j, 4.8418e-03 + - 2.4404e-03*1j, 6.9685e-03 - 2.6534e-03*1j, 7.6915e-03 - 3.5182e-03*1j, 1.0749e-02 + - 4.2291e-03*1j , 1.1902e-02 - 5.0055e-03*1j, 1.6024e-02 - 6.4526e-03*1j, 1.7878e-02 + - 7.0057e-03*1j, 2.3102e-02 - 9.4388e-03*1j, 2.6038e-02 - 9.6422e-03*1j , + 3.2280e-02 - 1.3269e-02*1j, 3.6789e-02 - 1.3061e-02*1j, 4.3841e-02 - 1.7982e-02*1j, 5.0495e-02 + - 1.7431e-02*1j, 5.8052e-02 - 2.3569e-02*1j , 6.7444e-02 - 2.2930e-02*1j, 7.5169e-02 + - 2.9981e-02*1j, 8.7819e-02 - 2.9736e-02*1j, 9.5427e-02 - 3.7136e-02*1j, 1.1167e-01 + - 3.8000e-02*1j , 1.1904e-01 - 4.4941e-02*1j, 1.3890e-01 - 4.7822e-02*1j, 1.4617e-01 + - 5.3309e-02*1j, 1.6926e-01 - 5.9221e-02*1j, 1.7695e-01 - 6.2182e-02*1j , + 2.0235e-01 - 7.2116e-02*1j, 2.1140e-01 - 7.1549e-02*1j, 2.3765e-01 - 8.6305e-02*1j, 2.4944e-01 + - 8.1456e-02*1j, 2.7453e-01 - 1.0146e-01*1j , 2.9088e-01 - 9.2017e-02*1j, 3.1227e-01 + - 1.1711e-01*1j, 3.3535e-01 - 1.0341e-01*1j, 3.5009e-01 - 1.3267e-01*1j, 3.8238e-01 + - 1.1587e-01*1j , 3.8713e-01 - 1.4742e-01*1j, 4.3146e-01 - 1.2974e-01*1j, 4.2233e-01 + - 1.6044e-01*1j, 4.8222e-01 - 1.4561e-01*1j, 4.5414e-01 - 1.7040e-01*1j , + 5.3510e-01 - 1.6460e-01*1j, 4.8020e-01 - 1.7358e-01*1j, 5.9455e-01 - 1.9170e-01*1j, 4.8669e-01 + - 1.5965e-01*1j, 6.9081e-01 - 2.6218e-01*1j , 3.1530e-01 + 9.3424e-02*1j, -7.1052e-01 + + 2.8833e-01*1j, -5.1861e-01 + 1.1433e-01*1j, -5.7535e-01 + 2.2141e-01*1j, -5.2124e-01 + + 1.3015e-01*1j , -5.1574e-01 + 1.9092e-01*1j, -4.9507e-01 + 1.3022e-01*1j, + -4.6700e-01 + 1.6704e-01*1j, -4.5921e-01 + 1.2586e-01*1j, -4.2136e-01 + 1.4550e-01*1j + , -4.1873e-01 + 1.1899e-01*1j, -3.7785e-01 + 1.2562e-01*1j, -3.7593e-01 + 1.1045e-01*1j, + -3.3620e-01 + 1.0737e-01*1j, -3.3244e-01 + 1.0068e-01*1j , -2.9648e-01 + 9.0865e-02*1j, + -2.8954e-01 + 9.0026e-02*1j, -2.5879e-01 + 7.6211e-02*1j, -2.4833e-01 + 7.8847e-02*1j, + -2.2331e-01 + 6.3414e-02*1j , -2.0968e-01 + 6.7517e-02*1j, -1.9019e-01 + 5.2395e-02*1j, + -1.7425e-01 + 5.6423e-02*1j, -1.5960e-01 + 4.2999e-02*1j, -1.4246e-01 + 4.5930e-02*1j + , -1.3169e-01 + 3.5031e-02*1j, -1.1454e-01 + 3.6352e-02*1j, -1.0661e-01 + 2.8282e-02*1j, + -9.0505e-02 + 2.7922e-02*1j, -8.4485e-02 + 2.2562e-02*1j , -7.0222e-02 + 2.0778e-02*1j, + -6.5365e-02 + 1.7714e-02*1j, -5.3441e-02 + 1.4956e-02*1j, -4.9242e-02 + 1.3619e-02*1j, + -3.9832e-02 + 1.0400e-02*1j , -3.6019e-02 + 1.0195e-02*1j, -2.9025e-02 + 6.9842e-03*1j, + -2.5513e-02 + 7.3869e-03*1j, -2.0639e-02 + 4.5335e-03*1j, -1.7457e-02 + 5.1469e-03*1j + , -1.4300e-02 + 2.8536e-03*1j, -1.1520e-02 + 3.4260e-03*1j, -9.6508e-03 + 1.7541e-03*1j, + -7.3304e-03 + 2.1628e-03*1j, -6.3552e-03 + 1.0661e-03*1j , -4.5025e-03 + 1.2798e-03*1j, + -4.1002e-03 + 6.5174e-04*1j, -2.6663e-03 + 6.8397e-04*1j, -2.5965e-03 + 4.0387e-04*1j, + -1.4935e-03 + 2.7171e-04*1j , -1.6079e-03 + 2.1239e-04*1j, 8.5832e-05 + 6.1758e-05*1j, 2.4841e-05 + + 1.8521e-05*1j, 9.8862e-06 + 7.4457e-06*1j, 3.4696e-06 + 2.6799e-06*1j , + 7.2346e-07 + 6.5333e-07*1j ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [216, 12] + rotation: 0 + state: enabled +- name: fine_freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Fine frequency correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '-100' + step: 1e-5 + stop: '100' + value: '10' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [216, 204] + rotation: 0 + state: enabled +- name: frameSizeRange + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Frame Size + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: 2*Hsize*Vsize + value: 2**21+450000 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [585, 245] + rotation: 0 + state: disabled +- name: freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Frequency Error (normalized) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '-1' + step: 1e-7 + stop: '1' + value: '0.0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [392, 148] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '3' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [728, 148] + rotation: 0 + state: enabled +- name: horizontal_offset + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal offset + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: interpolatedHsize + value: '0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 148] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1446, 192] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1169, 85] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [984, 12] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: '' + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: real + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [216, 64] + rotation: 0 + state: enabled +- name: lines_offset + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical offset + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: Vsize + value: int(Vsize/2) + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 12] + rotation: 0 + state: enabled +- name: offset + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: 1024*2 + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1321, 227] + rotation: 0 + state: disabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [136, 64] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [349, 12] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(19.98e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [137, 116] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size/2) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [307, 532] + rotation: 0 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: '1' + fft_size: fft_size + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [391, 309] + rotation: 0 + state: bypassed +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [830, 422] + rotation: 0 + state: enabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/test2_19980KHz_1920_1080.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [33, 354] + rotation: 0 + state: enabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1007, 610] + rotation: 270 + state: enabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [212, 333] + rotation: 0 + state: enabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '0.10' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [717, 633] + rotation: 0 + state: enabled +- name: qtgui_time_sink_x_1_0 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@0 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '1.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [577, 537] + rotation: 0 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [116, 657] + rotation: 90 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [570, 12] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size/2) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [403, 689] + rotation: 0 + state: enabled +- name: tempest_fine_sampling_synchronization_0 + id: tempest_fine_sampling_synchronization + parameters: + Htotal: interpolatedHsize + Vtotal: Vsize + affinity: '' + alias: '' + comment: '' + correct_sampling: '1' + max_deviation: 100.0/interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + update_proba: 1.2e-1/(interpolatedHsize*Vsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [524, 389] + rotation: 0 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [983, 431] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [742, 485] + rotation: 0 + state: disabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: 10e6 + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '""' + gain0: '40' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [52, 459] + rotation: 0 + state: disabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: Vsize + display_width: Hsize + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [983, 755] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', qtgui_time_sink_x_1_0, '0'] +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_fine_sampling_synchronization_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_sync_detector_0, en] +- [tempest_fine_sampling_synchronization_0, '0', blocks_complex_to_mag_0, '0'] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/manual_tempest_example_FFT_peaks_hd_and_EQ.grc b/examples/manual_tempest_example_FFT_peaks_hd_and_EQ.grc new file mode 100644 index 0000000..523c247 --- /dev/null +++ b/examples/manual_tempest_example_FFT_peaks_hd_and_EQ.grc @@ -0,0 +1,1779 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [81, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: interpolatedHsize*1 + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [932, 1064] + rotation: 0 + state: enabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [766, 252] + rotation: 0 + state: true +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [623, 168] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [350, 102] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [624, 64] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 178] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 104] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 126] + rotation: 0 + state: enabled +- name: eq_fir_1080p + id: variable + parameters: + comment: '' + value: '[-0.0004 + 0j,-0.0000 + 0.0000j,-0.0004 - 0.0000j,-0.0000 + 0.0001j,-0.0004 + - 0.0001j,-0.0000 + 0.0001j,-0.0004 - 0.0001j,-0.0000 + 0.0002j,-0.0004 + - 0.0001j,-0.0001 + 0.0002j,-0.0003 - 0.0001j,-0.0001 + 0.0003j,-0.0003 + - 0.0001j,-0.0002 + 0.0003j,-0.0003 - 0.0001j,-0.0002 + 0.0004j,-0.0002 + - 0.0001j,-0.0002 + 0.0004j,-0.0002 - 0.0001j,-0.0003 + 0.0004j,-0.0001 + - 0.0001j,-0.0003 + 0.0004j,-0.0001 - 0.0001j,-0.0004 + 0.0004j,-0.0000 + - 0.0000j,-0.0004 + 0.0004j, 0.0000 + 0.0000j,-0.0005 + 0.0004j, 0.0000 + + 0.0001j,-0.0005 + 0.0004j, 0.0001 + 0.0001j,-0.0006 + 0.0003j, 0.0001 + + 0.0002j,-0.0006 + 0.0003j, 0.0001 + 0.0002j,-0.0006 + 0.0003j, 0.0001 + + 0.0003j,-0.0006 + 0.0002j, 0.0001 + 0.0004j,-0.0006 + 0.0002j, 0.0001 + + 0.0005j,-0.0006 + 0.0001j, 0.0001 + 0.0005j,-0.0006 + 0.0001j, 0.0001 + + 0.0006j,-0.0006 + 0.0000j, 0.0000 + 0.0007j,-0.0006 - 0.0000j,-0.0000 + + 0.0008j,-0.0005 - 0.0000j,-0.0001 + 0.0008j,-0.0005 - 0.0001j,-0.0002 + + 0.0009j,-0.0004 - 0.0001j,-0.0002 + 0.0009j,-0.0004 - 0.0001j,-0.0003 + + 0.0010j,-0.0003 - 0.0001j,-0.0004 + 0.0010j,-0.0002 - 0.0001j,-0.0005 + + 0.0010j,-0.0002 - 0.0001j,-0.0006 + 0.0011j,-0.0001 - 0.0001j,-0.0007 + + 0.0011j,-0.0000 - 0.0000j,-0.0008 + 0.0010j, 0.0000 + 0.0000j,-0.0009 + + 0.0010j, 0.0001 + 0.0001j,-0.0010 + 0.0010j, 0.0002 + 0.0002j,-0.0011 + + 0.0009j, 0.0002 + 0.0003j,-0.0011 + 0.0009j, 0.0003 + 0.0004j,-0.0012 + + 0.0008j, 0.0003 + 0.0005j,-0.0013 + 0.0007j, 0.0003 + 0.0006j,-0.0013 + + 0.0006j, 0.0003 + 0.0007j,-0.0014 + 0.0005j, 0.0003 + 0.0008j,-0.0014 + + 0.0004j, 0.0003 + 0.0010j,-0.0014 + 0.0003j, 0.0002 + 0.0011j,-0.0014 + + 0.0002j, 0.0002 + 0.0013j,-0.0015 + 0.0002j, 0.0001 + 0.0019j,-0.0038 + + 0.0001j, 0.0001 + 0.0198j, 0.0603 + 0.0018j, 0.0091 - 0.1418j,-0.2643 + - 0.0260j,-0.0543 + 0.4093j, 0.5602 + 0.0937j, 0.1441 - 0.7130j,-0.8669 + - 0.2059j,-0.2777 + 1.0157j, 1.1535 + 0.3576j, 0.4438 - 1.2773j,-1.3776 + - 0.5314j,-0.6122 + 1.4403j, 1.4636 + 0.6813j, 0.7425 - 1.4640j,-1.4577 + - 0.8023j,-0.8613 + 1.4470j, 1.4300 + 0.9179j, 0.9747 - 1.4114j,-1.3954 + - 1.0349j,-1.0955 + 1.3775j, 1.3531 + 1.1528j, 1.2096 - 1.3263j,-1.3019 + - 1.2703j,-1.3319 + 1.2759j, 1.2436 + 1.3891j, 1.4451 - 1.2084j,-1.1749 + - 1.5056j,-1.5673 + 1.1402j, 1.0995 + 1.6238j, 1.6782 - 1.0555j,-1.0126 + - 1.7375j,-1.7986 + 0.9685j, 0.9189 + 1.8538j, 1.9057 - 0.8658j,-0.8130 + - 1.9627j,-2.0224 + 0.7588j, 0.6998 + 2.0754j, 2.1239 - 0.6372j,-0.5739 + - 2.1776j,-2.2347 + 0.5090j, 0.4399 + 2.2848j, 2.3289 - 0.3674j,-0.2933 + - 2.3781j,-2.4316 + 0.2169j, 0.1370 + 2.4778j, 2.5165 - 0.0541j, 0.0314 + - 2.5599j,-2.6085 - 0.1201j,-0.2118 + 2.6496j, 2.6819 + 0.3057j, 0.4032 + - 2.7181j,-2.7604 - 0.5052j,-0.6097 + 2.7952j, 2.8196 + 0.7155j, 0.8257 + - 2.8472j,-2.8814 - 0.9421j,-1.0608 + 2.9083j, 2.9235 + 1.1796j, 1.3035 + - 2.9407j,-2.9648 - 1.4358j,-1.5705 + 2.9820j, 2.9863 + 1.7038j, 1.8430 + - 2.9910j,-3.0027 - 1.9930j,-2.1461 + 3.0078j, 2.9988 + 2.2962j, 2.4527 + - 2.9886j,-2.9849 - 2.6231j,-2.7977 + 2.9749j, 2.9497 + 2.9679j, 3.1448 + - 2.9214j,-2.8985 - 3.3394j,-3.5403 + 2.8692j, 2.8239 + 3.7352j, 3.9374 + - 2.7730j,-2.7258 - 4.1619j,-4.3958 + 2.6715j, 2.6001 + 4.6228j, 4.8579 + - 2.5204j,-2.4414 - 5.1213j,-5.3988 + 2.3536j, 2.2471 + 5.6694j, 5.9499 + - 2.1289j,-2.0065 - 6.2670j,-6.6056 + 1.8717j, 1.7156 + 6.9393j, 7.2870 + - 1.5427j,-1.3575 - 7.6836j,-8.1142 + 1.1528j, 0.9212 + 8.5461j, 9.0016 + - 0.6640j,-0.3802 - 9.5270j,10.1094 + 0.0620j,-0.2958 + 10.7103j,11.3586 + + 0.6978j, 1.1560 - 12.1183j,12.9856 - 1.6826j,-2.2839 + 13.9218j,14.9722 + + 2.9782j, 3.8038 - 16.2383j,17.7577 - 4.7971j,-5.9920 + 19.5370j,21.6829 + + 7.4594j, 9.3348 - 24.4225j,28.1470 - 11.8617j,15.4831 + 33.5314j,40.9709 + + 20.6230j,26.6688 - 48.8079j,52.0219 - 30.7484j,28.2403 + 44.2950j,23.3522 + + 16.0214j,-3.8869 + 5.2747j,30.8124 + 24.3519j,37.7829 - 44.6248j,45.5825 + - 41.3136j,37.7025 + 38.8773j,30.6655 + 31.8158j,26.8368 - 24.1739j,19.7007 + - 23.4135j,21.0374 + 16.5218j,14.0970 + 19.2534j,17.8348 - 12.1558j,10.5339 + - 16.6349j,15.6016 + 9.1571j, 8.0025 + 14.7531j,14.0496 - 7.0180j,-6.1378 + - 13.4003j,12.7899 + 5.3438j, 4.6462 + 12.2684j,11.8264 - 4.0280j,-3.4572 + - 11.3969j,10.9712 + 2.9277j, 2.4483 + 10.5981j,10.2775 - 2.0116j,-1.6020 + - 9.9561j,-9.6259 + 1.2172j, 0.8612 + 9.3302j, 9.0735 - 0.5295j,-0.2163 + - 8.8117j,-8.5362 - 0.0786j,-0.3561 + 8.2845j, 8.0638 + 0.6197j, 0.8691 + - 7.8372j,-7.5953 - 1.1029j,-1.3255 + 7.3701j, 7.1703 + 1.5410j, 1.7448 + - 6.9655j,-6.7452 - 1.9337j,-2.1150 + 6.5365j, 6.3493 + 2.2938j, 2.4627 + - 6.1581j,-5.9524 - 2.6167j,-2.7650 + 5.7545j, 5.5747 + 2.9141j, 3.0547 + - 5.3922j,-5.1967 - 3.1801j,-3.3007 + 5.0061j, 4.8306 + 3.4243j, 3.5409 + - 4.6538j,-4.4656 - 3.6420j,-3.7384 + 4.2804j, 4.1076 + 3.8393j, 3.9345 + - 3.9345j,-3.7519 - 4.0141j,-4.0887 + 3.5709j, 3.3999 + 4.1688j, 4.2445 + - 3.2294j,-3.0514 - 4.3046j,-4.3591 + 2.8742j, 2.7047 + 4.4197j, 4.4769 + - 2.5361j,-2.3622 - 4.5189j,-4.5547 + 2.1885j, 2.0207 + 4.5966j, 4.6361 + - 1.8540j,-1.6839 - 4.6609j,-4.6790 + 1.5140j, 1.3482 + 4.7029j, 4.7252 + - 1.1836j,-1.0173 - 4.7335j,-4.7347 + 0.8515j, 0.6884 + 4.7411j, 4.7465 + - 0.5264j,-0.3642 - 4.7389j,-4.7239 + 0.2030j, 0.0434 + 4.7133j, 4.7021 + + 0.1154j, 0.2730 - 4.6788j,-4.6481 - 0.4290j,-0.5844 + 4.6211j, 4.5934 + + 0.7391j, 0.8915 - 4.5546j,-4.5088 - 1.0416j,-1.1917 + 4.4659j, 4.4220 + + 1.3414j, 1.4877 - 4.3679j,-4.3074 - 1.6313j,-1.7754 + 4.2492j, 4.1893 + + 1.9189j, 2.0580 - 4.1200j,-4.0452 - 2.1942j,-2.3315 + 3.9723j, 3.8968 + + 2.4676j, 2.5985 - 3.8124j,-3.7237 - 2.7264j,-2.8561 + 3.6366j, 3.5461 + + 2.9838j, 3.1047 - 3.4467j,-3.3444 - 3.2235j,-3.3448 + 3.2438j, 3.1387 + + 3.4630j, 3.5729 - 3.0251j,-2.9091 - 3.6809j,-3.7913 + 2.7939j, 2.6757 + + 3.9000j, 4.0096 - 2.5563j,-2.4240 - 4.1010j,-4.0498 + 2.2128j, 1.8310 + + 3.6375j, 2.7604 - 1.2746j,-0.6875 - 1.6313j,-0.6705 + 0.2563j, 0.0515 + + 0.1497j, 0.0019 - 0.0006j, 0.0015 + 0.0056j, 0.0078 - 0.0018j,-0.0011 + - 0.0057j, 0.0080 - 0.0013j,-0.0010 - 0.0077j, 0.0073 - 0.0007j,-0.0005 + - 0.0080j, 0.0065 - 0.0002j, 0.0000 - 0.0078j, 0.0057 + 0.0002j, 0.0006 + - 0.0076j, 0.0050 + 0.0005j, 0.0010 - 0.0073j, 0.0044 + 0.0008j, 0.0015 + - 0.0071j, 0.0038 + 0.0009j, 0.0019 - 0.0068j, 0.0032 + 0.0010j, 0.0023 + - 0.0065j, 0.0027 + 0.0011j, 0.0027 - 0.0062j, 0.0022 + 0.0011j, 0.0031 + - 0.0059j, 0.0018 + 0.0010j, 0.0034 - 0.0056j, 0.0014 + 0.0009j, 0.0037 + - 0.0052j, 0.0010 + 0.0008j, 0.0040 - 0.0049j, 0.0007 + 0.0006j, 0.0042 + - 0.0045j, 0.0004 + 0.0004j, 0.0044 - 0.0042j, 0.0002 + 0.0002j, 0.0046 + - 0.0038j,-0.0001 - 0.0001j, 0.0047 - 0.0034j,-0.0002 - 0.0003j, 0.0048 + - 0.0030j,-0.0003 - 0.0006j, 0.0049 - 0.0026j,-0.0004 - 0.0009j, 0.0049 + - 0.0022j,-0.0005 - 0.0012j, 0.0049 - 0.0018j,-0.0005 - 0.0015j, 0.0048 + - 0.0014j,-0.0004 - 0.0017j, 0.0047 - 0.0010j,-0.0004 - 0.0020j, 0.0046 + - 0.0007j,-0.0003 - 0.0023j, 0.0044 - 0.0004j,-0.0001 - 0.0025j, 0.0043 + - 0.0001j, 0.0001 - 0.0027j, 0.0040 + 0.0002j, 0.0003 - 0.0029j, 0.0038 + + 0.0005j, 0.0005 - 0.0030j, 0.0035 + 0.0007j, 0.0007 - 0.0032j, 0.0033 + + 0.0009j, 0.0010 - 0.0033j, 0.0030 + 0.0010j, 0.0012 - 0.0033j, 0.0027 + + 0.0011j, 0.0015 - 0.0033j, 0.0024 + 0.0012j, 0.0018 - 0.0033j, 0.0021 + + 0.0012j, 0.0021 - 0.0033j, 0.0018 + 0.0012j, 0.0023 - 0.0032j, 0.0015 + + 0.0012j, 0.0026 - 0.0031j, 0.0012 + 0.0011j, 0.0029 - 0.0030j, 0.0010 + + 0.0010j, 0.0031 - 0.0028j, 0.0007 + 0.0009j, 0.0033 - 0.0026j, 0.0005 + + 0.0007j, 0.0035 - 0.0024j, 0.0003 + 0.0005j, 0.0036 - 0.0022j, 0.0002 + + 0.0003j, 0.0038 - 0.0019j, 0.0001 + 0.0001j, 0.0039 - 0.0016j,-0.0000 + - 0.0001j, 0.0039 - 0.0014j,-0.0001 - 0.0003j, 0.0040 - 0.0011j,-0.0001 + - 0.0006j, 0.0040 - 0.0008j,-0.0001 - 0.0008j, 0.0039 - 0.0005j,-0.0001 + - 0.0011j, 0.0039 - 0.0002j,-0.0000 - 0.0013j, 0.0038 + 0.0000j, 0.0001 + - 0.0015j, 0.0037 + 0.0003j, 0.0002 - 0.0017j, 0.0035 + 0.0005j, 0.0003 + - 0.0019j, 0.0033 + 0.0007j, 0.0005 - 0.0020j, 0.0032 + 0.0009j, 0.0007 + - 0.0022j, 0.0029 + 0.0010j, 0.0009 - 0.0023j, 0.0027 + 0.0012j, 0.0011 + - 0.0024j, 0.0025 + 0.0013j, 0.0014 - 0.0024j, 0.0022 + 0.0013j, 0.0016 + - 0.0024j, 0.0020 + 0.0014j, 0.0018 - 0.0024j, 0.0017 + 0.0014j, 0.0021 + - 0.0024j, 0.0015 + 0.0014j, 0.0023 - 0.0023j, 0.0013 + 0.0013j, 0.0025 + - 0.0022j, 0.0010 + 0.0012j, 0.0027 - 0.0021j, 0.0008 + 0.0011j, 0.0029 + - 0.0020j, 0.0006 + 0.0010j, 0.0031 - 0.0018j, 0.0005 + 0.0009j, 0.0033 + - 0.0016j, 0.0003 + 0.0007j, 0.0034 - 0.0014j, 0.0002 + 0.0005j, 0.0035 + - 0.0012j, 0.0001 + 0.0003j, 0.0036 - 0.0009j, 0.0000 + 0.0001j, 0.0036 + - 0.0007j,-0.0000 - 0.0001j, 0.0036 - 0.0004j,-0.0000 - 0.0004j, 0.0036 + - 0.0002j,-0.0000 - 0.0006j, 0.0036 + 0.0001j, 0.0000 - 0.0008j, 0.0035 + + 0.0003j, 0.0001 - 0.0010j, 0.0034 + 0.0005j, 0.0002 - 0.0012j, 0.0033 + + 0.0007j, 0.0004 - 0.0014j, 0.0032 + 0.0009j, 0.0005 - 0.0015j, 0.0030 + + 0.0011j, 0.0007 - 0.0017j, 0.0028 + 0.0013j, 0.0009 - 0.0018j, 0.0026 + + 0.0014j, 0.0011 - 0.0019j, 0.0024 + 0.0015j, 0.0013 - 0.0019j, 0.0022 + + 0.0016j, 0.0015 - 0.0020j, 0.0019 + 0.0016j, 0.0017 - 0.0020j, 0.0017 + + 0.0016j, 0.0020 - 0.0019j, 0.0015 + 0.0016j, 0.0022 - 0.0019j, 0.0013 + + 0.0016j, 0.0024 - 0.0018j, 0.0011 + 0.0015j, 0.0026 - 0.0017j, 0.0008 + + 0.0014j, 0.0028 - 0.0016j, 0.0007 + 0.0013j, 0.0030 - 0.0014j, 0.0005 + + 0.0012j, 0.0031 - 0.0012j, 0.0003 + 0.0010j, 0.0033 - 0.0010j, 0.0002 + + 0.0008j, 0.0034 - 0.0008j, 0.0001 + 0.0006j, 0.0035 - 0.0006j, 0.0001 + + 0.0004j, 0.0035 - 0.0004j, 0.0000 + 0.0002j, 0.0036 - 0.0001j]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [842, 184] + rotation: 0 + state: disabled +- name: ferror + id: variable + parameters: + comment: '' + value: (samp_rate*fine_freq)/(2*pi*interpolatedHsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1077, 302] + rotation: 0 + state: true +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [592, 224] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: '[-6.13e-05-1.22e-05j, + + 6.18e-04-2.02e-04j, + + 3.84e-03-2.43e-03j, + + 5.50e-03-3.87e-03j, + + 7.65e-03-5.51e-03j, + + 8.36e-03-6.47e-03j, + + 3.42e-03-3.78e-03j, + + -7.81e-03+2.35e-03j, + + -3.86e-02+2.21e-02j, + + -8.12e-02+4.68e-02j, + + -1.62e-01+9.94e-02j, + + -2.48e-01+1.48e-01j, + + -3.92e-01+2.43e-01j, + + -5.04e-01+2.99e-01j, + + -7.22e-01+4.49e-01j, + + -6.65e-01+3.56e-01j, + + 7.83e-01-4.68e-01j, + + 6.76e-01-3.60e-01j, + + 5.19e-01-2.92e-01j, + + 3.70e-01-1.98e-01j, + + 2.48e-01-1.39e-01j, + + 1.48e-01-8.02e-02j, + + 7.74e-02-4.50e-02j, + + 3.09e-02-1.83e-02j, + + 4.68e-03-4.89e-03j, + + -6.43e-03+1.92e-03j, + + -9.85e-03+4.10e-03j, + + -8.23e-03+3.73e-03j, + + -5.86e-03+2.73e-03j, + + -3.57e-03+1.94e-03j, + + -1.81e-04+2.41e-04j, + + ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [976, 185] + rotation: 0 + state: enabled +- name: filtro_ecualizador_viejo + id: variable + parameters: + comment: '' + value: '[ 3.5209e-07 - 1.0836e-06*1j, 1.4076e-06 - 2.3919e-06*1j, 5.9650e-06 + - 6.1506e-06*1j, 1.5271e-05 - 1.4326e-05*1j, 4.1151e-05 - 3.6713e-05*1j , + 3.9905e-04 - 6.3391e-04*1j, 1.4256e-03 - 4.2010e-04*1j, 1.7775e-03 - 1.1448e-03*1j, 2.6252e-03 + - 8.9501e-04*1j, 2.9812e-03 - 1.6801e-03*1j , 4.3656e-03 - 1.5903e-03*1j, 4.8418e-03 + - 2.4404e-03*1j, 6.9685e-03 - 2.6534e-03*1j, 7.6915e-03 - 3.5182e-03*1j, 1.0749e-02 + - 4.2291e-03*1j , 1.1902e-02 - 5.0055e-03*1j, 1.6024e-02 - 6.4526e-03*1j, 1.7878e-02 + - 7.0057e-03*1j, 2.3102e-02 - 9.4388e-03*1j, 2.6038e-02 - 9.6422e-03*1j , + 3.2280e-02 - 1.3269e-02*1j, 3.6789e-02 - 1.3061e-02*1j, 4.3841e-02 - 1.7982e-02*1j, 5.0495e-02 + - 1.7431e-02*1j, 5.8052e-02 - 2.3569e-02*1j , 6.7444e-02 - 2.2930e-02*1j, 7.5169e-02 + - 2.9981e-02*1j, 8.7819e-02 - 2.9736e-02*1j, 9.5427e-02 - 3.7136e-02*1j, 1.1167e-01 + - 3.8000e-02*1j , 1.1904e-01 - 4.4941e-02*1j, 1.3890e-01 - 4.7822e-02*1j, 1.4617e-01 + - 5.3309e-02*1j, 1.6926e-01 - 5.9221e-02*1j, 1.7695e-01 - 6.2182e-02*1j , + 2.0235e-01 - 7.2116e-02*1j, 2.1140e-01 - 7.1549e-02*1j, 2.3765e-01 - 8.6305e-02*1j, 2.4944e-01 + - 8.1456e-02*1j, 2.7453e-01 - 1.0146e-01*1j , 2.9088e-01 - 9.2017e-02*1j, 3.1227e-01 + - 1.1711e-01*1j, 3.3535e-01 - 1.0341e-01*1j, 3.5009e-01 - 1.3267e-01*1j, 3.8238e-01 + - 1.1587e-01*1j , 3.8713e-01 - 1.4742e-01*1j, 4.3146e-01 - 1.2974e-01*1j, 4.2233e-01 + - 1.6044e-01*1j, 4.8222e-01 - 1.4561e-01*1j, 4.5414e-01 - 1.7040e-01*1j , + 5.3510e-01 - 1.6460e-01*1j, 4.8020e-01 - 1.7358e-01*1j, 5.9455e-01 - 1.9170e-01*1j, 4.8669e-01 + - 1.5965e-01*1j, 6.9081e-01 - 2.6218e-01*1j , 3.1530e-01 + 9.3424e-02*1j, -7.1052e-01 + + 2.8833e-01*1j, -5.1861e-01 + 1.1433e-01*1j, -5.7535e-01 + 2.2141e-01*1j, -5.2124e-01 + + 1.3015e-01*1j , -5.1574e-01 + 1.9092e-01*1j, -4.9507e-01 + 1.3022e-01*1j, + -4.6700e-01 + 1.6704e-01*1j, -4.5921e-01 + 1.2586e-01*1j, -4.2136e-01 + 1.4550e-01*1j + , -4.1873e-01 + 1.1899e-01*1j, -3.7785e-01 + 1.2562e-01*1j, -3.7593e-01 + 1.1045e-01*1j, + -3.3620e-01 + 1.0737e-01*1j, -3.3244e-01 + 1.0068e-01*1j , -2.9648e-01 + 9.0865e-02*1j, + -2.8954e-01 + 9.0026e-02*1j, -2.5879e-01 + 7.6211e-02*1j, -2.4833e-01 + 7.8847e-02*1j, + -2.2331e-01 + 6.3414e-02*1j , -2.0968e-01 + 6.7517e-02*1j, -1.9019e-01 + 5.2395e-02*1j, + -1.7425e-01 + 5.6423e-02*1j, -1.5960e-01 + 4.2999e-02*1j, -1.4246e-01 + 4.5930e-02*1j + , -1.3169e-01 + 3.5031e-02*1j, -1.1454e-01 + 3.6352e-02*1j, -1.0661e-01 + 2.8282e-02*1j, + -9.0505e-02 + 2.7922e-02*1j, -8.4485e-02 + 2.2562e-02*1j , -7.0222e-02 + 2.0778e-02*1j, + -6.5365e-02 + 1.7714e-02*1j, -5.3441e-02 + 1.4956e-02*1j, -4.9242e-02 + 1.3619e-02*1j, + -3.9832e-02 + 1.0400e-02*1j , -3.6019e-02 + 1.0195e-02*1j, -2.9025e-02 + 6.9842e-03*1j, + -2.5513e-02 + 7.3869e-03*1j, -2.0639e-02 + 4.5335e-03*1j, -1.7457e-02 + 5.1469e-03*1j + , -1.4300e-02 + 2.8536e-03*1j, -1.1520e-02 + 3.4260e-03*1j, -9.6508e-03 + 1.7541e-03*1j, + -7.3304e-03 + 2.1628e-03*1j, -6.3552e-03 + 1.0661e-03*1j , -4.5025e-03 + 1.2798e-03*1j, + -4.1002e-03 + 6.5174e-04*1j, -2.6663e-03 + 6.8397e-04*1j, -2.5965e-03 + 4.0387e-04*1j, + -1.4935e-03 + 2.7171e-04*1j , -1.6079e-03 + 2.1239e-04*1j, 8.5832e-05 + 6.1758e-05*1j, 2.4841e-05 + + 1.8521e-05*1j, 9.8862e-06 + 7.4457e-06*1j, 3.4696e-06 + 2.6799e-06*1j , + 7.2346e-07 + 6.5333e-07*1j ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [979, 246] + rotation: 0 + state: disabled +- name: fine_freq + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Sine multiply Freq correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '-50000' + step: '0.1' + stop: '50000' + value: '19215.22' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [972, 5] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [229, 132] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 7] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [622, 116] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 64] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: tab_m@0 + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: int + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 6] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [136, 64] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@0 + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [222, 8] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: int(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [137, 116] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '1.0' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [242, 1191] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: interpolatedHsize*Vsize*4 + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [349, 773] + rotation: 0 + state: enabled +- name: analog_sig_source_x_0_0 + id: analog_sig_source_x + parameters: + affinity: '' + alias: '' + amp: '1' + comment: '' + freq: -fine_freq + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + phase: '0' + samp_rate: samp_rate + type: complex + waveform: analog.GR_COS_WAVE + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [937, 705] + rotation: 0 + state: enabled +- name: blocks_complex_to_arg_0 + id: blocks_complex_to_arg + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1059, 396] + rotation: 0 + state: disabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1174, 908] + rotation: 0 + state: disabled +- name: blocks_complex_to_real_0 + id: blocks_complex_to_real + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1168, 637] + rotation: 0 + state: enabled +- name: blocks_delay_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 576.0] + rotation: 0 + state: enabled +- name: blocks_delay_0_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [937, 906] + rotation: 0 + state: disabled +- name: blocks_delay_1 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [603, 554] + rotation: 90 + state: disabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/test2_19980KHz_1920_1080.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [69, 626] + rotation: 0 + state: disabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1424, 1113] + rotation: 270 + state: enabled +- name: blocks_multiply_conjugate_cc_0 + id: blocks_multiply_conjugate_cc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [576, 374] + rotation: 90 + state: disabled +- name: blocks_multiply_xx_0_0 + id: blocks_multiply_xx + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_inputs: '2' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1239, 688] + rotation: 0 + state: enabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [271, 650] + rotation: 0 + state: disabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 141] + rotation: 0 + state: true +- name: interp_fir_filter_xxx_1 + id: interp_fir_filter_xxx + parameters: + affinity: '' + alias: '' + comment: '' + interp: '1' + maxoutbuf: '0' + minoutbuf: '0' + samp_delay: '0' + taps: filtro_ecualizador_1st + type: ccc + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [721, 726] + rotation: 0 + state: bypassed +- name: qtgui_time_sink_x_0 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'True' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@0 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: '1024' + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '""' + type: float + update_time: '0.5' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Phase difference (rad). + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1341, 496] + rotation: 0 + state: disabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size/2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '19.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '2.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [490, 1022] + rotation: 90 + state: enabled +- name: ratio_finder_toggle_on_and_off + id: variable_qtgui_msg_push_button + parameters: + comment: '' + gui_hint: '' + label: Ratio Finder toggle ON or OFF (FFT peaks). + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [441, 1471] + rotation: 180 + state: enabled +- name: single_pole_iir_filter_xx_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: '0.001' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 392] + rotation: 0 + state: disabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [353, 8] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [325, 1201] + rotation: 90 + state: enabled +- name: tempest_fine_sampling_synchronization_0 + id: tempest_fine_sampling_synchronization + parameters: + Htotal: interpolatedHsize + Vtotal: Vsize + affinity: '' + alias: '' + comment: '' + correct_sampling: '1' + max_deviation: 10.0/interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + update_proba: 1.2e-2/(interpolatedHsize*Vsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [645, 791] + rotation: 0 + state: disabled +- name: tempest_infer_screen_resolution_1 + id: tempest_infer_screen_resolution + parameters: + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: samp_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 1102] + rotation: 0 + state: disabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1400, 924] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [848, 572.0] + rotation: 0 + state: enabled +- name: tempest_sync_detector_0_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [706, 950] + rotation: 0 + state: disabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [83, 741] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1400, 1258] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [FFT_autocorrelation_0_0, '0', tempest_infer_screen_resolution_1, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_delay_1, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_multiply_conjugate_cc_0, '0'] +- [Keep_1_in_N_Frames_0, '0', interp_fir_filter_xxx_1, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_fine_sampling_synchronization_0, '0'] +- [Keep_1_in_N_Frames_0, '0', tempest_sync_detector_0_0, '0'] +- [analog_sig_source_x_0_0, '0', blocks_multiply_xx_0_0, '1'] +- [blocks_complex_to_arg_0, '0', qtgui_time_sink_x_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_complex_to_real_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0, '0', blocks_multiply_xx_0_0, '0'] +- [blocks_delay_0_0, '0', blocks_complex_to_mag_0, '0'] +- [blocks_delay_1, '0', blocks_multiply_conjugate_cc_0, '1'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [blocks_multiply_conjugate_cc_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_multiply_xx_0_0, '0', blocks_complex_to_real_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0, '0'] +- [interp_fir_filter_xxx_1, '0', tempest_sync_detector_0, '0'] +- [ratio_finder_toggle_on_and_off, pressed, tempest_fft_peak_fine_sampling_sync_0_0, + en] +- [single_pole_iir_filter_xx_0, '0', blocks_complex_to_arg_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0, '0', blocks_delay_0, '0'] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/manual_tempest_example_HDMI_Real_and_CentralFreqCorrection.grc b/examples/manual_tempest_example_HDMI_Real_and_CentralFreqCorrection.grc new file mode 100644 index 0000000..4dc8355 --- /dev/null +++ b/examples/manual_tempest_example_HDMI_Real_and_CentralFreqCorrection.grc @@ -0,0 +1,1707 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [81, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@1 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: '0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [932, 1064] + rotation: 0 + state: disabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@1 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [16, 1125] + rotation: 0 + state: enabled +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [623, 168] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [350, 102] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [624, 64] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 178] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 104] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 126] + rotation: 0 + state: enabled +- name: angle_error + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@1 + label: Sine angle correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: -pi-0.2 + step: '0.00001' + stop: pi+0.2 + value: '-2.6' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [972, 5] + rotation: 0 + state: enabled +- name: denominador + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0.91' + step: '0.000001' + stop: '1.1' + value: '1.0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [144, 285] + rotation: 0 + state: true +- name: ferror + id: variable + parameters: + comment: '' + value: (samp_rate*angle_error)/(2*pi*interpolatedHsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1077, 302] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [592, 224] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: '[-6.13e-05-1.22e-05j, + + 6.18e-04-2.02e-04j, + + 3.84e-03-2.43e-03j, + + 5.50e-03-3.87e-03j, + + 7.65e-03-5.51e-03j, + + 8.36e-03-6.47e-03j, + + 3.42e-03-3.78e-03j, + + -7.81e-03+2.35e-03j, + + -3.86e-02+2.21e-02j, + + -8.12e-02+4.68e-02j, + + -1.62e-01+9.94e-02j, + + -2.48e-01+1.48e-01j, + + -3.92e-01+2.43e-01j, + + -5.04e-01+2.99e-01j, + + -7.22e-01+4.49e-01j, + + -6.65e-01+3.56e-01j, + + 7.83e-01-4.68e-01j, + + 6.76e-01-3.60e-01j, + + 5.19e-01-2.92e-01j, + + 3.70e-01-1.98e-01j, + + 2.48e-01-1.39e-01j, + + 1.48e-01-8.02e-02j, + + 7.74e-02-4.50e-02j, + + 3.09e-02-1.83e-02j, + + 4.68e-03-4.89e-03j, + + -6.43e-03+1.92e-03j, + + -9.85e-03+4.10e-03j, + + -8.23e-03+3.73e-03j, + + -5.86e-03+2.73e-03j, + + -3.57e-03+1.94e-03j, + + -1.81e-04+2.41e-04j, + + ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [976, 185] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [229, 132] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 7] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [622, 116] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 64] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: '' + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: int + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 6] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [146, 193] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [222, 8] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: round(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [137, 116] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '0.5' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [390, 1120] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [349, 773] + rotation: 270 + state: disabled +- name: Keep_1_in_N_Frames_0_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: int(interpolatedHsize*Vsize*4) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [452, 765] + rotation: 270 + state: enabled +- name: analog_frequency_modulator_fc_0 + id: analog_frequency_modulator_fc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + sensitivity: 2*pi/(samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [916, 450] + rotation: 270 + state: enabled +- name: analog_sig_source_x_0_0 + id: analog_sig_source_x + parameters: + affinity: '' + alias: '' + amp: '1' + comment: '' + freq: -ferror + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + phase: '0' + samp_rate: samp_rate + type: complex + waveform: analog.GR_COS_WAVE + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1044, 774] + rotation: 0 + state: enabled +- name: blocks_complex_to_arg_0 + id: blocks_complex_to_arg + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [869, 362] + rotation: 0 + state: enabled +- name: blocks_complex_to_arg_0_0 + id: blocks_complex_to_arg + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1923, 390] + rotation: 0 + state: enabled +- name: blocks_complex_to_mag_0 + id: blocks_complex_to_mag + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1215, 908] + rotation: 0 + state: disabled +- name: blocks_complex_to_real_0 + id: blocks_complex_to_real + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1373, 745] + rotation: 0 + state: enabled +- name: blocks_delay_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: DelaySyncDetector + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [949, 653] + rotation: 0 + state: disabled +- name: blocks_delay_1 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [603, 554] + rotation: 90 + state: enabled +- name: blocks_delay_1_0 + id: blocks_delay + parameters: + affinity: '' + alias: '' + comment: '' + delay: interpolatedHsize + maxoutbuf: '0' + minoutbuf: '0' + num_ports: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1657, 582] + rotation: 90 + state: enabled +- name: blocks_file_sink_0 + id: blocks_file_sink + parameters: + affinity: '' + alias: '' + append: 'False' + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/DEMO_VGA_recording_1080p_60Hz_50MHz.dat + type: complex + unbuffered: 'False' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [267, 541] + rotation: 0 + state: disabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/DEMO_VGA_recording_1080p_60Hz_50MHz.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [37, 625] + rotation: 0 + state: disabled +- name: blocks_float_to_short_0 + id: blocks_float_to_short + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + scale: inverted + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1422, 1154] + rotation: 270 + state: enabled +- name: blocks_multiply_conjugate_cc_0 + id: blocks_multiply_conjugate_cc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [576, 374] + rotation: 90 + state: enabled +- name: blocks_multiply_conjugate_cc_0_0 + id: blocks_multiply_conjugate_cc + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1630, 402] + rotation: 90 + state: enabled +- name: blocks_multiply_xx_0_0 + id: blocks_multiply_xx + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_inputs: '2' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1239, 688] + rotation: 0 + state: enabled +- name: blocks_multiply_xx_0_0_0 + id: blocks_multiply_xx + parameters: + affinity: '' + alias: '' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + num_inputs: '2' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1039, 559] + rotation: 0 + state: enabled +- name: blocks_null_sink_0 + id: blocks_null_sink + parameters: + affinity: '' + alias: '' + bus_structure_sink: '[[0,],]' + comment: '' + num_inputs: '1' + type: float + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [830, 1036] + rotation: 0 + state: disabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [277, 619] + rotation: 0 + state: disabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 141] + rotation: 0 + state: true +- name: qtgui_time_sink_x_0 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'True' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'False' + gui_hint: tab_m@0 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: '1024' + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '0.0' + tr_mode: qtgui.TRIG_MODE_FREE + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '""' + type: float + update_time: '0.5' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Phase difference (rad). + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1906, 488] + rotation: 0 + state: enabled +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size*2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '18.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '1.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [603, 1103] + rotation: 270 + state: enabled +- name: single_pole_iir_filter_xx_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: '0.00001' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [695, 302] + rotation: 0 + state: enabled +- name: single_pole_iir_filter_xx_0_0 + id: single_pole_iir_filter_xx + parameters: + affinity: '' + alias: '' + alpha: '0.00001' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1749, 330] + rotation: 0 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [353, 8] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: int(samp_rate) + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [463, 1105] + rotation: 90 + state: enabled +- name: tempest_fine_sampling_synchronization_0 + id: tempest_fine_sampling_synchronization + parameters: + Htotal: interpolatedHsize + Vtotal: Vsize + affinity: '' + alias: '' + comment: '' + correct_sampling: '1' + max_deviation: '10' + maxoutbuf: '0' + minoutbuf: '0' + update_proba: 1e-3 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [651, 813] + rotation: 0 + state: enabled +- name: tempest_normalize_flow_0 + id: tempest_normalize_flow + parameters: + affinity: '' + alias: '' + alpha_avg: 1e-2 + comment: '' + max: '245' + maxoutbuf: '0' + min: '10' + minoutbuf: '0' + update_proba: '0.1' + window: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1398, 967] + rotation: 270 + state: enabled +- name: tempest_sync_detector_0 + id: tempest_sync_detector + parameters: + affinity: '' + alias: '' + comment: '' + hblanking: interpolatedHblank + hscreen: interpolatedHscreen + maxoutbuf: '0' + minoutbuf: '0' + vblanking: Vblank + vscreen: Vsize-Vblank + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [919, 856] + rotation: 0 + state: enabled +- name: tempest_tempest_msgbtn_0 + id: tempest_tempest_msgbtn + parameters: + affinity: '' + alias: '' + comment: '' + gui_hint: tab_m@1 + label: 'Ratio Finder toggle ON or OFF (FFT peaks). ' + maxoutbuf: '0' + minoutbuf: '0' + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [282, 1185] + rotation: 270 + state: true +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: 10*px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [83, 741] + rotation: 0 + state: enabled +- name: video_sdl_sink_0_0_0 + id: video_sdl_sink + parameters: + affinity: '' + alias: '' + comment: "Enable this path when you are sure what the \nresolution is (and defaut\ + \ to those values on \nthe chooser)." + display_height: '517' + display_width: '1088' + fps: '0' + height: Vsize + num_channels: '1' + type: short + width: interpolatedHsize + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1398, 1326] + rotation: 270 + state: enabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_delay_1, '0'] +- [Keep_1_in_N_Frames_0, '0', blocks_multiply_conjugate_cc_0, '0'] +- [Keep_1_in_N_Frames_0_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0_0, '0', blocks_complex_to_mag_0, '0'] +- [Keep_1_in_N_Frames_0_0, '0', blocks_delay_1, '0'] +- [Keep_1_in_N_Frames_0_0, '0', blocks_multiply_conjugate_cc_0, '0'] +- [Keep_1_in_N_Frames_0_0, '0', tempest_fine_sampling_synchronization_0, '0'] +- [analog_frequency_modulator_fc_0, '0', blocks_multiply_xx_0_0_0, '0'] +- [analog_sig_source_x_0_0, '0', blocks_multiply_xx_0_0, '1'] +- [blocks_complex_to_arg_0, '0', analog_frequency_modulator_fc_0, '0'] +- [blocks_complex_to_arg_0_0, '0', qtgui_time_sink_x_0, '0'] +- [blocks_complex_to_mag_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_complex_to_real_0, '0', tempest_normalize_flow_0, '0'] +- [blocks_delay_0, '0', blocks_multiply_xx_0_0, '0'] +- [blocks_delay_1, '0', blocks_multiply_conjugate_cc_0, '1'] +- [blocks_delay_1_0, '0', blocks_multiply_conjugate_cc_0_0, '1'] +- [blocks_file_source_0, '0', blocks_file_sink_0, '0'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_float_to_short_0, '0', video_sdl_sink_0_0_0, '0'] +- [blocks_multiply_conjugate_cc_0, '0', single_pole_iir_filter_xx_0, '0'] +- [blocks_multiply_conjugate_cc_0_0, '0', single_pole_iir_filter_xx_0_0, '0'] +- [blocks_multiply_xx_0_0, '0', blocks_complex_to_real_0, '0'] +- [blocks_multiply_xx_0_0, '0', blocks_delay_1_0, '0'] +- [blocks_multiply_xx_0_0, '0', blocks_multiply_conjugate_cc_0_0, '0'] +- [blocks_multiply_xx_0_0_0, '0', blocks_multiply_xx_0_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0_0, '0'] +- [single_pole_iir_filter_xx_0, '0', blocks_complex_to_arg_0, '0'] +- [single_pole_iir_filter_xx_0_0, '0', blocks_complex_to_arg_0_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', blocks_null_sink_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fine_sampling_synchronization_0, '0', tempest_sync_detector_0, '0'] +- [tempest_normalize_flow_0, '0', blocks_float_to_short_0, '0'] +- [tempest_sync_detector_0, '0', blocks_multiply_xx_0_0_0, '1'] +- [tempest_tempest_msgbtn_0, pressed, tempest_fft_peak_fine_sampling_sync_0_0, en] +- [uhd_usrp_source_0, '0', Keep_1_in_N_Frames_0_0, '0'] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/manual_tempest_hdmi_example.grc b/examples/manual_tempest_hdmi_example.grc index 4e849fd..0120b08 100644 --- a/examples/manual_tempest_hdmi_example.grc +++ b/examples/manual_tempest_hdmi_example.grc @@ -1,6 +1,7 @@ options: parameters: author: '' + catch_exceptions: 'True' category: '[GRC Hier Blocks]' cmake_opt: '' comment: '' @@ -51,8 +52,10 @@ blocks: gui_hint: 1, 0, 1,1 label: Horizontal resolution (total) min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: int(4096*1.5) @@ -84,8 +87,10 @@ blocks: gui_hint: 1, 1, 1,1 label: Vertical resolution (total) min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: int(2160*1.5) @@ -105,8 +110,10 @@ blocks: gui_hint: '' label: Harmonic min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '1' step: '1' stop: '10' @@ -126,8 +133,10 @@ blocks: gui_hint: '' label: Horizontal offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: interpolatedHsize @@ -165,6 +174,7 @@ blocks: label4: '' labels: '[]' num_opts: '2' + option0: '0' option1: '1' option2: '2' option3: '3' @@ -188,8 +198,10 @@ blocks: gui_hint: '' label: Vertical offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: Vsize @@ -221,8 +233,10 @@ blocks: gui_hint: '' label: Refresh Rate (Hz) min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '0' step: '1' stop: '240' @@ -527,38 +541,70 @@ blocks: clock_source6: '' clock_source7: '' comment: '' - dc_offs_enb0: '""' - dc_offs_enb1: '""' - dc_offs_enb10: '""' - dc_offs_enb11: '""' - dc_offs_enb12: '""' - dc_offs_enb13: '""' - dc_offs_enb14: '""' - dc_offs_enb15: '""' - dc_offs_enb16: '""' - dc_offs_enb17: '""' - dc_offs_enb18: '""' - dc_offs_enb19: '""' - dc_offs_enb2: '""' - dc_offs_enb20: '""' - dc_offs_enb21: '""' - dc_offs_enb22: '""' - dc_offs_enb23: '""' - dc_offs_enb24: '""' - dc_offs_enb25: '""' - dc_offs_enb26: '""' - dc_offs_enb27: '""' - dc_offs_enb28: '""' - dc_offs_enb29: '""' - dc_offs_enb3: '""' - dc_offs_enb30: '""' - dc_offs_enb31: '""' - dc_offs_enb4: '""' - dc_offs_enb5: '""' - dc_offs_enb6: '""' - dc_offs_enb7: '""' - dc_offs_enb8: '""' - dc_offs_enb9: '""' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default dev_addr: '""' dev_args: '""' gain0: '50' @@ -593,38 +639,102 @@ blocks: gain7: '0' gain8: '0' gain9: '0' - iq_imbal_enb0: '""' - iq_imbal_enb1: '""' - iq_imbal_enb10: '""' - iq_imbal_enb11: '""' - iq_imbal_enb12: '""' - iq_imbal_enb13: '""' - iq_imbal_enb14: '""' - iq_imbal_enb15: '""' - iq_imbal_enb16: '""' - iq_imbal_enb17: '""' - iq_imbal_enb18: '""' - iq_imbal_enb19: '""' - iq_imbal_enb2: '""' - iq_imbal_enb20: '""' - iq_imbal_enb21: '""' - iq_imbal_enb22: '""' - iq_imbal_enb23: '""' - iq_imbal_enb24: '""' - iq_imbal_enb25: '""' - iq_imbal_enb26: '""' - iq_imbal_enb27: '""' - iq_imbal_enb28: '""' - iq_imbal_enb29: '""' - iq_imbal_enb3: '""' - iq_imbal_enb30: '""' - iq_imbal_enb31: '""' - iq_imbal_enb4: '""' - iq_imbal_enb5: '""' - iq_imbal_enb6: '""' - iq_imbal_enb7: '""' - iq_imbal_enb8: '""' - iq_imbal_enb9: '""' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default lo_export0: 'False' lo_export1: 'False' lo_export10: 'False' @@ -692,38 +802,6 @@ blocks: maxoutbuf: '0' minoutbuf: '0' nchan: '1' - norm_gain0: 'False' - norm_gain1: 'False' - norm_gain10: 'False' - norm_gain11: 'False' - norm_gain12: 'False' - norm_gain13: 'False' - norm_gain14: 'False' - norm_gain15: 'False' - norm_gain16: 'False' - norm_gain17: 'False' - norm_gain18: 'False' - norm_gain19: 'False' - norm_gain2: 'False' - norm_gain20: 'False' - norm_gain21: 'False' - norm_gain22: 'False' - norm_gain23: 'False' - norm_gain24: 'False' - norm_gain25: 'False' - norm_gain26: 'False' - norm_gain27: 'False' - norm_gain28: 'False' - norm_gain29: 'False' - norm_gain3: 'False' - norm_gain30: 'False' - norm_gain31: 'False' - norm_gain4: 'False' - norm_gain5: 'False' - norm_gain6: 'False' - norm_gain7: 'False' - norm_gain8: 'False' - norm_gain9: 'False' num_mboards: '1' otw: '' rx_agc0: Default @@ -768,6 +846,7 @@ blocks: sd_spec6: '' sd_spec7: '' show_lo_controls: 'False' + start_time: '-1.0' stream_args: '' stream_chans: '[]' sync: sync @@ -845,3 +924,4 @@ connections: metadata: file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/msg_btn_example.grc b/examples/msg_btn_example.grc new file mode 100644 index 0000000..42a5b81 --- /dev/null +++ b/examples/msg_btn_example.grc @@ -0,0 +1,1225 @@ +options: + parameters: + author: '' + catch_exceptions: 'True' + category: '[GRC Hier Blocks]' + cmake_opt: '' + comment: '' + copyright: '' + description: '' + gen_cmake: 'On' + gen_linking: dynamic + generate_options: qt_gui + hier_block_src_path: '.:' + id: manual_tempest_example + max_nouts: '0' + output_language: python + placement: (0,0) + qt_qss_theme: '' + realtime_scheduling: '1' + run: 'True' + run_command: '{python} -u {filename}' + run_options: prompt + sizing_mode: fixed + thread_safe_setters: '' + title: '' + window_size: '' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [81, 12] + rotation: 0 + state: enabled + +blocks: +- name: DelaySyncDetector + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@1 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: interpolatedHsize*1 + stop: Vsize*interpolatedHsize + value: '0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1161, 624] + rotation: 0 + state: disabled +- name: DroppedFrames + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@1 + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '100' + value: '50' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [127, 927] + rotation: 0 + state: enabled +- name: Hblank + id: variable + parameters: + comment: '' + value: Hsize-Hvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [623, 168] + rotation: 0 + state: enabled +- name: Hsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Horizontal resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(4096*1.5) + value: '2200' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [350, 102] + rotation: 0 + state: enabled +- name: Hvisible + id: variable + parameters: + comment: '' + value: '1920' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [624, 64] + rotation: 0 + state: enabled +- name: Vblank + id: variable + parameters: + comment: '' + value: Vsize-Vvisible + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 178] + rotation: 0 + state: enabled +- name: Vsize + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Vertical resolution (total) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: int + showports: 'False' + start: '0' + step: '1' + stop: int(2160*1.5) + value: '1125' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [493, 104] + rotation: 0 + state: enabled +- name: Vvisible + id: variable + parameters: + comment: '' + value: '1080' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [750, 126] + rotation: 0 + state: enabled +- name: angle_error + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: tab_m@1 + label: Sine angle correction + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: -pi-0.2 + step: '0.00001' + stop: pi+0.2 + value: '-2.6' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [972, 5] + rotation: 0 + state: enabled +- name: denominador + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: '' + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0.91' + step: '0.000001' + stop: '1.1' + value: '1.0' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [144, 285] + rotation: 0 + state: true +- name: ferror + id: variable + parameters: + comment: '' + value: (samp_rate*angle_error)/(2*pi*interpolatedHsize) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1077, 302] + rotation: 0 + state: enabled +- name: fft_size + id: variable + parameters: + comment: '' + value: 2**21 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [592, 224] + rotation: 0 + state: true +- name: filtro_ecualizador_1st + id: variable + parameters: + comment: '' + value: '[-6.13e-05-1.22e-05j, + + 6.18e-04-2.02e-04j, + + 3.84e-03-2.43e-03j, + + 5.50e-03-3.87e-03j, + + 7.65e-03-5.51e-03j, + + 8.36e-03-6.47e-03j, + + 3.42e-03-3.78e-03j, + + -7.81e-03+2.35e-03j, + + -3.86e-02+2.21e-02j, + + -8.12e-02+4.68e-02j, + + -1.62e-01+9.94e-02j, + + -2.48e-01+1.48e-01j, + + -3.92e-01+2.43e-01j, + + -5.04e-01+2.99e-01j, + + -7.22e-01+4.49e-01j, + + -6.65e-01+3.56e-01j, + + 7.83e-01-4.68e-01j, + + 6.76e-01-3.60e-01j, + + 5.19e-01-2.92e-01j, + + 3.70e-01-1.98e-01j, + + 2.48e-01-1.39e-01j, + + 1.48e-01-8.02e-02j, + + 7.74e-02-4.50e-02j, + + 3.09e-02-1.83e-02j, + + 4.68e-03-4.89e-03j, + + -6.43e-03+1.92e-03j, + + -9.85e-03+4.10e-03j, + + -8.23e-03+3.73e-03j, + + -5.86e-03+2.73e-03j, + + -3.57e-03+1.94e-03j, + + -1.81e-04+2.41e-04j, + + ]' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [976, 185] + rotation: 0 + state: enabled +- name: harmonic + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Harmonic + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '1' + step: '1' + stop: '10' + value: '2' + widget: counter_slider + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [229, 132] + rotation: 0 + state: enabled +- name: interpolatedHblank + id: variable + parameters: + comment: '' + value: int(Hblank/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [740, 7] + rotation: 0 + state: enabled +- name: interpolatedHscreen + id: variable + parameters: + comment: '' + value: int(Hvisible/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [622, 116] + rotation: 0 + state: enabled +- name: interpolatedHsize + id: variable + parameters: + comment: '' + value: int(Hsize/float(px_rate)*samp_rate) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [747, 64] + rotation: 0 + state: enabled +- name: inverted + id: variable_qtgui_chooser + parameters: + comment: '' + gui_hint: '' + label: Inverted colors? + label0: 'Yes' + label1: 'No' + label2: '' + label3: '' + label4: '' + labels: '[]' + num_opts: '2' + option0: '0' + option1: '1' + option2: '2' + option3: '3' + option4: '4' + options: '[0, 1, 2]' + orient: Qt.QHBoxLayout + type: int + value: '1' + widget: radio_buttons + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [850, 6] + rotation: 0 + state: enabled +- name: px_rate + id: variable + parameters: + comment: '' + value: Hsize*Vsize*refresh_rate + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [146, 193] + rotation: 0 + state: enabled +- name: refresh_rate + id: variable_qtgui_range + parameters: + comment: '' + gui_hint: '' + label: Refresh Rate (Hz) + min_len: '200' + orient: QtCore.Qt.Horizontal + outputmsgname: value + rangeType: float + showports: 'False' + start: '0' + step: '1' + stop: '240' + value: '60' + widget: counter + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [222, 8] + rotation: 0 + state: enabled +- name: samp_rate + id: variable + parameters: + comment: '' + value: round(50e6) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [137, 116] + rotation: 0 + state: enabled +- name: FFT_autocorrelation_0_0 + id: FFT_autocorrelation + parameters: + affinity: '' + alias: '' + alpha: '0.5' + comment: '' + fft_size: int(fft_size) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [698, 735] + rotation: 270 + state: enabled +- name: Keep_1_in_N_Frames_0_0 + id: Keep_1_in_N_Frames + parameters: + affinity: '' + alias: '' + comment: '' + fac_decimation: DroppedFrames + fft_size: int(interpolatedHsize*Vsize*4) + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [697, 509] + rotation: 270 + state: enabled +- name: blocks_file_sink_0 + id: blocks_file_sink + parameters: + affinity: '' + alias: '' + append: 'False' + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/DEMO_VGA_recording_1080p_60Hz_50MHz.dat + type: complex + unbuffered: 'False' + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [378, 343] + rotation: 0 + state: disabled +- name: blocks_file_source_0 + id: blocks_file_source + parameters: + affinity: '' + alias: '' + begin_tag: pmt.PMT_NIL + comment: '' + file: /home/felipe/gnuradio/git/grabaciones_local/DEMO_VGA_recording_1080p_60Hz_50MHz.dat + length: '0' + maxoutbuf: '0' + minoutbuf: '0' + offset: '0' + repeat: 'True' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [148, 427] + rotation: 0 + state: enabled +- name: blocks_null_sink_0 + id: blocks_null_sink + parameters: + affinity: '' + alias: '' + bus_structure_sink: '[[0,],]' + comment: '' + num_inputs: '1' + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1059, 596] + rotation: 0 + state: enabled +- name: blocks_throttle_0 + id: blocks_throttle + parameters: + affinity: '' + alias: '' + comment: '' + ignoretag: 'True' + maxoutbuf: '0' + minoutbuf: '0' + samples_per_second: samp_rate + type: complex + vlen: '1' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [418, 464] + rotation: 0 + state: enabled +- name: import_0 + id: import + parameters: + alias: '' + comment: '' + imports: from math import pi + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1048, 141] + rotation: 0 + state: true +- name: qtgui_time_sink_x_1 + id: qtgui_time_sink_x + parameters: + affinity: '' + alias: '' + alpha1: '1.0' + alpha10: '1.0' + alpha2: '1.0' + alpha3: '1.0' + alpha4: '1.0' + alpha5: '1.0' + alpha6: '1.0' + alpha7: '1.0' + alpha8: '1.0' + alpha9: '1.0' + autoscale: 'False' + axislabels: 'True' + color1: blue + color10: dark blue + color2: red + color3: green + color4: black + color5: cyan + color6: magenta + color7: yellow + color8: dark red + color9: dark green + comment: '' + ctrlpanel: 'False' + entags: 'True' + grid: 'True' + gui_hint: tab_m@1 + label1: Signal 1 + label10: Signal 10 + label2: Signal 2 + label3: Signal 3 + label4: Signal 4 + label5: Signal 5 + label6: Signal 6 + label7: Signal 7 + label8: Signal 8 + label9: Signal 9 + legend: 'True' + marker1: '-1' + marker10: '-1' + marker2: '-1' + marker3: '-1' + marker4: '-1' + marker5: '-1' + marker6: '-1' + marker7: '-1' + marker8: '-1' + marker9: '-1' + name: '""' + nconnections: '1' + size: int(fft_size*2) + srate: samp_rate + stemplot: 'False' + style1: '1' + style10: '1' + style2: '1' + style3: '1' + style4: '1' + style5: '1' + style6: '1' + style7: '1' + style8: '1' + style9: '1' + tr_chan: '0' + tr_delay: '0' + tr_level: '18.0' + tr_mode: qtgui.TRIG_MODE_NORM + tr_slope: qtgui.TRIG_SLOPE_POS + tr_tag: '"peak_1"' + type: float + update_time: '1.0' + width1: '1' + width10: '1' + width2: '1' + width3: '1' + width4: '1' + width5: '1' + width6: '1' + width7: '1' + width8: '1' + width9: '1' + ylabel: Amplitude + ymax: '1' + ymin: '-1' + yunit: '""' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [911, 718] + rotation: 270 + state: enabled +- name: tab_m + id: qtgui_tab_widget + parameters: + alias: '' + comment: '' + gui_hint: '' + label0: Tempest Main Tab + label1: Autocorrelation Plot Tab + label10: Tab 10 + label11: Tab 11 + label12: Tab 12 + label13: Tab 13 + label14: Tab 14 + label15: Tab 15 + label16: Tab 16 + label17: Tab 17 + label18: Tab 18 + label19: Tab 19 + label2: Tab 2 + label3: Tab 3 + label4: Tab 4 + label5: Tab 5 + label6: Tab 6 + label7: Tab 7 + label8: Tab 8 + label9: Tab 9 + num_tabs: '2' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [353, 8] + rotation: 0 + state: true +- name: tempest_fft_peak_fine_sampling_sync_0_0 + id: tempest_fft_peak_fine_sampling_sync + parameters: + Hvisible: interpolatedHsize + Vvisible: Vsize + affinity: '' + alias: '' + automatic_mode: 'True' + comment: '' + maxoutbuf: '0' + minoutbuf: '0' + refresh_rate: refresh_rate + sample_rate: int(samp_rate) + size: int(fft_size) + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [771, 720] + rotation: 90 + state: enabled +- name: tempest_ssamp_correction_0 + id: tempest_ssamp_correction + parameters: + Htotal: interpolatedHsize + Vtotal: Vsize + affinity: '' + alias: '' + comment: '' + correct_sampling: '1' + max_deviation: '10' + maxoutbuf: '0' + minoutbuf: '0' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [902, 456] + rotation: 0 + state: enabled +- name: tempest_tempest_msgbtn_0 + id: tempest_tempest_msgbtn + parameters: + affinity: '' + alias: '' + comment: '' + gui_hint: tab_m@1 + label: 'Ratio Finder toggle ON or OFF (FFT peaks). ' + maxoutbuf: '0' + minoutbuf: '0' + msgName: pressed + relBackgroundColor: default + relFontColor: default + type: bool + value: 'True' + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [1041, 721] + rotation: 270 + state: enabled +- name: uhd_usrp_source_0 + id: uhd_usrp_source + parameters: + affinity: '' + alias: '' + ant0: '' + ant1: '' + ant10: '' + ant11: '' + ant12: '' + ant13: '' + ant14: '' + ant15: '' + ant16: '' + ant17: '' + ant18: '' + ant19: '' + ant2: '' + ant20: '' + ant21: '' + ant22: '' + ant23: '' + ant24: '' + ant25: '' + ant26: '' + ant27: '' + ant28: '' + ant29: '' + ant3: '' + ant30: '' + ant31: '' + ant4: '' + ant5: '' + ant6: '' + ant7: '' + ant8: '' + ant9: '' + bw0: '0' + bw1: '0' + bw10: '0' + bw11: '0' + bw12: '0' + bw13: '0' + bw14: '0' + bw15: '0' + bw16: '0' + bw17: '0' + bw18: '0' + bw19: '0' + bw2: '0' + bw20: '0' + bw21: '0' + bw22: '0' + bw23: '0' + bw24: '0' + bw25: '0' + bw26: '0' + bw27: '0' + bw28: '0' + bw29: '0' + bw3: '0' + bw30: '0' + bw31: '0' + bw4: '0' + bw5: '0' + bw6: '0' + bw7: '0' + bw8: '0' + bw9: '0' + center_freq0: 10*px_rate*harmonic + center_freq1: '0' + center_freq10: '0' + center_freq11: '0' + center_freq12: '0' + center_freq13: '0' + center_freq14: '0' + center_freq15: '0' + center_freq16: '0' + center_freq17: '0' + center_freq18: '0' + center_freq19: '0' + center_freq2: '0' + center_freq20: '0' + center_freq21: '0' + center_freq22: '0' + center_freq23: '0' + center_freq24: '0' + center_freq25: '0' + center_freq26: '0' + center_freq27: '0' + center_freq28: '0' + center_freq29: '0' + center_freq3: '0' + center_freq30: '0' + center_freq31: '0' + center_freq4: '0' + center_freq5: '0' + center_freq6: '0' + center_freq7: '0' + center_freq8: '0' + center_freq9: '0' + clock_rate: '0.0' + clock_source0: '' + clock_source1: '' + clock_source2: '' + clock_source3: '' + clock_source4: '' + clock_source5: '' + clock_source6: '' + clock_source7: '' + comment: '' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default + dev_addr: '""' + dev_args: '"recv_frame_size= 65536, num_recv_frames=128"' + gain0: '50' + gain1: '0' + gain10: '0' + gain11: '0' + gain12: '0' + gain13: '0' + gain14: '0' + gain15: '0' + gain16: '0' + gain17: '0' + gain18: '0' + gain19: '0' + gain2: '0' + gain20: '0' + gain21: '0' + gain22: '0' + gain23: '0' + gain24: '0' + gain25: '0' + gain26: '0' + gain27: '0' + gain28: '0' + gain29: '0' + gain3: '0' + gain30: '0' + gain31: '0' + gain4: '0' + gain5: '0' + gain6: '0' + gain7: '0' + gain8: '0' + gain9: '0' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default + lo_export0: 'False' + lo_export1: 'False' + lo_export10: 'False' + lo_export11: 'False' + lo_export12: 'False' + lo_export13: 'False' + lo_export14: 'False' + lo_export15: 'False' + lo_export16: 'False' + lo_export17: 'False' + lo_export18: 'False' + lo_export19: 'False' + lo_export2: 'False' + lo_export20: 'False' + lo_export21: 'False' + lo_export22: 'False' + lo_export23: 'False' + lo_export24: 'False' + lo_export25: 'False' + lo_export26: 'False' + lo_export27: 'False' + lo_export28: 'False' + lo_export29: 'False' + lo_export3: 'False' + lo_export30: 'False' + lo_export31: 'False' + lo_export4: 'False' + lo_export5: 'False' + lo_export6: 'False' + lo_export7: 'False' + lo_export8: 'False' + lo_export9: 'False' + lo_source0: internal + lo_source1: internal + lo_source10: internal + lo_source11: internal + lo_source12: internal + lo_source13: internal + lo_source14: internal + lo_source15: internal + lo_source16: internal + lo_source17: internal + lo_source18: internal + lo_source19: internal + lo_source2: internal + lo_source20: internal + lo_source21: internal + lo_source22: internal + lo_source23: internal + lo_source24: internal + lo_source25: internal + lo_source26: internal + lo_source27: internal + lo_source28: internal + lo_source29: internal + lo_source3: internal + lo_source30: internal + lo_source31: internal + lo_source4: internal + lo_source5: internal + lo_source6: internal + lo_source7: internal + lo_source8: internal + lo_source9: internal + maxoutbuf: '0' + minoutbuf: '0' + nchan: '1' + num_mboards: '1' + otw: '' + rx_agc0: Default + rx_agc1: Default + rx_agc10: Default + rx_agc11: Default + rx_agc12: Default + rx_agc13: Default + rx_agc14: Default + rx_agc15: Default + rx_agc16: Default + rx_agc17: Default + rx_agc18: Default + rx_agc19: Default + rx_agc2: Default + rx_agc20: Default + rx_agc21: Default + rx_agc22: Default + rx_agc23: Default + rx_agc24: Default + rx_agc25: Default + rx_agc26: Default + rx_agc27: Default + rx_agc28: Default + rx_agc29: Default + rx_agc3: Default + rx_agc30: Default + rx_agc31: Default + rx_agc4: Default + rx_agc5: Default + rx_agc6: Default + rx_agc7: Default + rx_agc8: Default + rx_agc9: Default + samp_rate: samp_rate + sd_spec0: '' + sd_spec1: '' + sd_spec2: '' + sd_spec3: '' + sd_spec4: '' + sd_spec5: '' + sd_spec6: '' + sd_spec7: '' + show_lo_controls: 'False' + start_time: '-1.0' + stream_args: '' + stream_chans: '[]' + sync: sync + time_source0: '' + time_source1: '' + time_source2: '' + time_source3: '' + time_source4: '' + time_source5: '' + time_source6: '' + time_source7: '' + type: fc32 + states: + bus_sink: false + bus_source: false + bus_structure: null + coordinate: [194, 543] + rotation: 0 + state: disabled + +connections: +- [FFT_autocorrelation_0_0, '0', tempest_fft_peak_fine_sampling_sync_0_0, '0'] +- [Keep_1_in_N_Frames_0_0, '0', FFT_autocorrelation_0_0, '0'] +- [Keep_1_in_N_Frames_0_0, '0', tempest_ssamp_correction_0, '0'] +- [blocks_file_source_0, '0', blocks_file_sink_0, '0'] +- [blocks_file_source_0, '0', blocks_throttle_0, '0'] +- [blocks_throttle_0, '0', Keep_1_in_N_Frames_0_0, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, '0', qtgui_time_sink_x_1, '0'] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, FFT_autocorrelation_0_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, en, tempest_ssamp_correction_0, en] +- [tempest_fft_peak_fine_sampling_sync_0_0, ratio, tempest_ssamp_correction_0, ratio] +- [tempest_ssamp_correction_0, '0', blocks_null_sink_0, '0'] +- [tempest_tempest_msgbtn_0, pressed, tempest_fft_peak_fine_sampling_sync_0_0, en] + +metadata: + file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/examples/semi_automatic_tempest_hdmi_example.grc b/examples/semi_automatic_tempest_hdmi_example.grc index c4444b8..aeda550 100644 --- a/examples/semi_automatic_tempest_hdmi_example.grc +++ b/examples/semi_automatic_tempest_hdmi_example.grc @@ -1,6 +1,7 @@ options: parameters: author: '' + catch_exceptions: 'True' category: '[GRC Hier Blocks]' cmake_opt: '' comment: '' @@ -51,8 +52,10 @@ blocks: gui_hint: 3,0,1,1 label: Horizontal correction min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '-20' step: '1' stop: '20' @@ -155,8 +158,10 @@ blocks: gui_hint: 3,1,1,1 label: Vertical correction min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '-20' step: '1' stop: '20' @@ -246,8 +251,10 @@ blocks: gui_hint: 4,1,1,1 label: Harmonic min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: float + showports: 'False' start: '1' step: '1' stop: '10' @@ -267,8 +274,10 @@ blocks: gui_hint: 1,0,1,2 label: Horizontal offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: interpolatedHsize @@ -306,6 +315,7 @@ blocks: label4: '' labels: '[]' num_opts: '2' + option0: '0' option1: '1' option2: '2' option3: '3' @@ -329,8 +339,10 @@ blocks: gui_hint: 0,0,1,2 label: Vertical offset min_len: '200' - orient: Qt.Horizontal + orient: QtCore.Qt.Horizontal + outputmsgname: value rangeType: int + showports: 'False' start: '0' step: '1' stop: Vsize @@ -356,6 +368,7 @@ blocks: label4: '' labels: modes num_opts: '0' + option0: '0' option1: '1' option2: '2' option3: '3' @@ -735,38 +748,70 @@ blocks: clock_source6: '' clock_source7: '' comment: '' - dc_offs_enb0: '""' - dc_offs_enb1: '""' - dc_offs_enb10: '""' - dc_offs_enb11: '""' - dc_offs_enb12: '""' - dc_offs_enb13: '""' - dc_offs_enb14: '""' - dc_offs_enb15: '""' - dc_offs_enb16: '""' - dc_offs_enb17: '""' - dc_offs_enb18: '""' - dc_offs_enb19: '""' - dc_offs_enb2: '""' - dc_offs_enb20: '""' - dc_offs_enb21: '""' - dc_offs_enb22: '""' - dc_offs_enb23: '""' - dc_offs_enb24: '""' - dc_offs_enb25: '""' - dc_offs_enb26: '""' - dc_offs_enb27: '""' - dc_offs_enb28: '""' - dc_offs_enb29: '""' - dc_offs_enb3: '""' - dc_offs_enb30: '""' - dc_offs_enb31: '""' - dc_offs_enb4: '""' - dc_offs_enb5: '""' - dc_offs_enb6: '""' - dc_offs_enb7: '""' - dc_offs_enb8: '""' - dc_offs_enb9: '""' + dc_offs0: 0+0j + dc_offs1: 0+0j + dc_offs10: 0+0j + dc_offs11: 0+0j + dc_offs12: 0+0j + dc_offs13: 0+0j + dc_offs14: 0+0j + dc_offs15: 0+0j + dc_offs16: 0+0j + dc_offs17: 0+0j + dc_offs18: 0+0j + dc_offs19: 0+0j + dc_offs2: 0+0j + dc_offs20: 0+0j + dc_offs21: 0+0j + dc_offs22: 0+0j + dc_offs23: 0+0j + dc_offs24: 0+0j + dc_offs25: 0+0j + dc_offs26: 0+0j + dc_offs27: 0+0j + dc_offs28: 0+0j + dc_offs29: 0+0j + dc_offs3: 0+0j + dc_offs30: 0+0j + dc_offs31: 0+0j + dc_offs4: 0+0j + dc_offs5: 0+0j + dc_offs6: 0+0j + dc_offs7: 0+0j + dc_offs8: 0+0j + dc_offs9: 0+0j + dc_offs_enb0: default + dc_offs_enb1: default + dc_offs_enb10: default + dc_offs_enb11: default + dc_offs_enb12: default + dc_offs_enb13: default + dc_offs_enb14: default + dc_offs_enb15: default + dc_offs_enb16: default + dc_offs_enb17: default + dc_offs_enb18: default + dc_offs_enb19: default + dc_offs_enb2: default + dc_offs_enb20: default + dc_offs_enb21: default + dc_offs_enb22: default + dc_offs_enb23: default + dc_offs_enb24: default + dc_offs_enb25: default + dc_offs_enb26: default + dc_offs_enb27: default + dc_offs_enb28: default + dc_offs_enb29: default + dc_offs_enb3: default + dc_offs_enb30: default + dc_offs_enb31: default + dc_offs_enb4: default + dc_offs_enb5: default + dc_offs_enb6: default + dc_offs_enb7: default + dc_offs_enb8: default + dc_offs_enb9: default dev_addr: '""' dev_args: '""' gain0: '50' @@ -801,38 +846,102 @@ blocks: gain7: '0' gain8: '0' gain9: '0' - iq_imbal_enb0: '""' - iq_imbal_enb1: '""' - iq_imbal_enb10: '""' - iq_imbal_enb11: '""' - iq_imbal_enb12: '""' - iq_imbal_enb13: '""' - iq_imbal_enb14: '""' - iq_imbal_enb15: '""' - iq_imbal_enb16: '""' - iq_imbal_enb17: '""' - iq_imbal_enb18: '""' - iq_imbal_enb19: '""' - iq_imbal_enb2: '""' - iq_imbal_enb20: '""' - iq_imbal_enb21: '""' - iq_imbal_enb22: '""' - iq_imbal_enb23: '""' - iq_imbal_enb24: '""' - iq_imbal_enb25: '""' - iq_imbal_enb26: '""' - iq_imbal_enb27: '""' - iq_imbal_enb28: '""' - iq_imbal_enb29: '""' - iq_imbal_enb3: '""' - iq_imbal_enb30: '""' - iq_imbal_enb31: '""' - iq_imbal_enb4: '""' - iq_imbal_enb5: '""' - iq_imbal_enb6: '""' - iq_imbal_enb7: '""' - iq_imbal_enb8: '""' - iq_imbal_enb9: '""' + gain_type0: default + gain_type1: default + gain_type10: default + gain_type11: default + gain_type12: default + gain_type13: default + gain_type14: default + gain_type15: default + gain_type16: default + gain_type17: default + gain_type18: default + gain_type19: default + gain_type2: default + gain_type20: default + gain_type21: default + gain_type22: default + gain_type23: default + gain_type24: default + gain_type25: default + gain_type26: default + gain_type27: default + gain_type28: default + gain_type29: default + gain_type3: default + gain_type30: default + gain_type31: default + gain_type4: default + gain_type5: default + gain_type6: default + gain_type7: default + gain_type8: default + gain_type9: default + iq_imbal0: 0+0j + iq_imbal1: 0+0j + iq_imbal10: 0+0j + iq_imbal11: 0+0j + iq_imbal12: 0+0j + iq_imbal13: 0+0j + iq_imbal14: 0+0j + iq_imbal15: 0+0j + iq_imbal16: 0+0j + iq_imbal17: 0+0j + iq_imbal18: 0+0j + iq_imbal19: 0+0j + iq_imbal2: 0+0j + iq_imbal20: 0+0j + iq_imbal21: 0+0j + iq_imbal22: 0+0j + iq_imbal23: 0+0j + iq_imbal24: 0+0j + iq_imbal25: 0+0j + iq_imbal26: 0+0j + iq_imbal27: 0+0j + iq_imbal28: 0+0j + iq_imbal29: 0+0j + iq_imbal3: 0+0j + iq_imbal30: 0+0j + iq_imbal31: 0+0j + iq_imbal4: 0+0j + iq_imbal5: 0+0j + iq_imbal6: 0+0j + iq_imbal7: 0+0j + iq_imbal8: 0+0j + iq_imbal9: 0+0j + iq_imbal_enb0: default + iq_imbal_enb1: default + iq_imbal_enb10: default + iq_imbal_enb11: default + iq_imbal_enb12: default + iq_imbal_enb13: default + iq_imbal_enb14: default + iq_imbal_enb15: default + iq_imbal_enb16: default + iq_imbal_enb17: default + iq_imbal_enb18: default + iq_imbal_enb19: default + iq_imbal_enb2: default + iq_imbal_enb20: default + iq_imbal_enb21: default + iq_imbal_enb22: default + iq_imbal_enb23: default + iq_imbal_enb24: default + iq_imbal_enb25: default + iq_imbal_enb26: default + iq_imbal_enb27: default + iq_imbal_enb28: default + iq_imbal_enb29: default + iq_imbal_enb3: default + iq_imbal_enb30: default + iq_imbal_enb31: default + iq_imbal_enb4: default + iq_imbal_enb5: default + iq_imbal_enb6: default + iq_imbal_enb7: default + iq_imbal_enb8: default + iq_imbal_enb9: default lo_export0: 'False' lo_export1: 'False' lo_export10: 'False' @@ -900,38 +1009,6 @@ blocks: maxoutbuf: '0' minoutbuf: '0' nchan: '1' - norm_gain0: 'False' - norm_gain1: 'False' - norm_gain10: 'False' - norm_gain11: 'False' - norm_gain12: 'False' - norm_gain13: 'False' - norm_gain14: 'False' - norm_gain15: 'False' - norm_gain16: 'False' - norm_gain17: 'False' - norm_gain18: 'False' - norm_gain19: 'False' - norm_gain2: 'False' - norm_gain20: 'False' - norm_gain21: 'False' - norm_gain22: 'False' - norm_gain23: 'False' - norm_gain24: 'False' - norm_gain25: 'False' - norm_gain26: 'False' - norm_gain27: 'False' - norm_gain28: 'False' - norm_gain29: 'False' - norm_gain3: 'False' - norm_gain30: 'False' - norm_gain31: 'False' - norm_gain4: 'False' - norm_gain5: 'False' - norm_gain6: 'False' - norm_gain7: 'False' - norm_gain8: 'False' - norm_gain9: 'False' num_mboards: '1' otw: '' rx_agc0: Default @@ -976,6 +1053,7 @@ blocks: sd_spec6: '' sd_spec7: '' show_lo_controls: 'False' + start_time: '-1.0' stream_args: '' stream_chans: '[]' sync: sync @@ -1053,3 +1131,4 @@ connections: metadata: file_format: 1 + grc_version: v3.11.0.0git-215-g9a698313 diff --git a/grc/CMakeLists.txt b/grc/CMakeLists.txt index ba704e8..0a30762 100644 --- a/grc/CMakeLists.txt +++ b/grc/CMakeLists.txt @@ -17,12 +17,18 @@ # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, # Boston, MA 02110-1301, USA. - install(FILES tempest_sampling_synchronization.block.yml tempest_framing.block.yml tempest_Hsync.block.yml tempest_image_source.block.yml tempest_normalize_flow.block.yml - tempest_fine_sampling_synchronization.block.yml DESTINATION share/gnuradio/grc/blocks + tempest_fine_sampling_synchronization.block.yml + tempest_sync_detector.block.yml + tempest_frame_drop.block.yml + tempest_message_to_var.block.yml + tempest_fft_peak_fine_sampling_sync.block.yml + tempest_infer_screen_resolution.block.yml + tempest_tempest_msgbtn.block.yml + tempest_ssamp_correction.block.yml DESTINATION share/gnuradio/grc/blocks ) diff --git a/grc/tempest_Hsync.block.yml b/grc/tempest_Hsync.block.yml index 0e3dea3..bb55534 100644 --- a/grc/tempest_Hsync.block.yml +++ b/grc/tempest_Hsync.block.yml @@ -2,7 +2,7 @@ id: tempest_Hsync label: Horizontal Sync category: '[Tempest]' templates: - imports: import tempest + imports: import gnuradio.tempest as tempest make: tempest.Hsync(${Htotal}, ${delay}) callbacks: - set_Htotal_and_delay(${Htotal},${delay}) diff --git a/grc/tempest_fft_peak_fine_sampling_sync.block.yml b/grc/tempest_fft_peak_fine_sampling_sync.block.yml new file mode 100644 index 0000000..9301c6a --- /dev/null +++ b/grc/tempest_fft_peak_fine_sampling_sync.block.yml @@ -0,0 +1,53 @@ +id: tempest_fft_peak_fine_sampling_sync +label: fft_peak_fine_sampling_sync +category: '[Tempest]' + +templates: + imports: import gnuradio.tempest as tempest + make: tempest.fft_peak_fine_sampling_sync(${sample_rate}, ${size}, ${refresh_rate}, ${Vvisible}, ${Hvisible}, ${automatic_mode}) + +# Make one 'parameters' list entry for every parameter you want settable from the GUI. +# Keys include: +# * id (makes the value accessible as \$keyname, e.g. in the make entry) +# * label (label shown in the GUI) +# * dtype (e.g. int, float, complex, byte, short, xxx_vector, ...) +parameters: +- id: sample_rate + label: Samp_rate + dtype: int +- id: size + label: Fft_size + dtype: int +- id: refresh_rate + label: Refresh_rate + dtype: int +- id: Vvisible + label: vvisible + dtype: int +- id: Hvisible + label: hvisible + dtype: int +- id: automatic_mode + label: automatic_mode + dtype: bool +inputs: +- label: in + domain: stream + dtype: float +- label: en + domain: message + optional: true +outputs: +- label: out + domain: stream + dtype: float +- label: en + domain: message + optional: true +- label: ratio + domain: message + optional: true +- label: rate + domain: message + optional: true +file_format: 1 diff --git a/grc/tempest_fine_sampling_synchronization.block.yml b/grc/tempest_fine_sampling_synchronization.block.yml index 8f90a6b..1b33bb3 100644 --- a/grc/tempest_fine_sampling_synchronization.block.yml +++ b/grc/tempest_fine_sampling_synchronization.block.yml @@ -2,7 +2,7 @@ id: tempest_fine_sampling_synchronization label: Fine sampling synchronization category: '[Tempest]' templates: - imports: import tempest + imports: import gnuradio.tempest as tempest make: tempest.fine_sampling_synchronization(${Htotal}, ${Vtotal}, ${correct_sampling}, ${max_deviation}, ${update_proba}) callbacks: diff --git a/grc/tempest_frame_drop.block.yml b/grc/tempest_frame_drop.block.yml new file mode 100644 index 0000000..d816283 --- /dev/null +++ b/grc/tempest_frame_drop.block.yml @@ -0,0 +1,50 @@ +id: tempest_frame_drop +label: Frame Dropper +category: '[Tempest]' +templates: + imports: import gnuradio.tempest as tempest + make: tempest.frame_drop(${Htotal}, ${Vtotal}, ${correct_sampling}, ${max_deviation}, + ${update_proba}, ${actual_samp_rate}) +parameters: +- id: Htotal + label: Horizontal total + dtype: int +- id: Vtotal + label: Vertical total + dtype: int +- id: correct_sampling + label: Correct sampling? + dtype: enum + default: 1 + options: [1, 0] + option_labels: ['Yes', 'No'] +- id: max_deviation + label: Max. deviation + dtype: float +- id: update_proba + label: Update prob. + dtype: float +- id: actual_samp_rate + label: Samp rate + dtype: real +inputs: +- label: in + domain: stream + dtype: complex +- label: en + domain: message + optional: true +- label: smpl + domain: message + optional: true +- label: ratio + domain: message + optional: true +outputs: +- label: out + domain: stream + dtype: complex +- label: ratio + domain: message + optional: true +file_format: 1 diff --git a/grc/tempest_framing.block.yml b/grc/tempest_framing.block.yml index 74b6d8a..730ce4a 100644 --- a/grc/tempest_framing.block.yml +++ b/grc/tempest_framing.block.yml @@ -2,7 +2,7 @@ id: tempest_framing label: Framing category: '[Tempest]' templates: - imports: import tempest + imports: import gnuradio.tempest as tempest make: tempest.framing(${Htotal}, ${Vtotal}, ${Hdisplay}, ${Vdisplay}) callbacks: - set_Htotal_and_Vtotal(${Htotal},${Vtotal}) diff --git a/grc/tempest_image_source.block.yml b/grc/tempest_image_source.block.yml index 1f63055..459d565 100644 --- a/grc/tempest_image_source.block.yml +++ b/grc/tempest_image_source.block.yml @@ -3,7 +3,7 @@ label: Image Source category: '[Tempest]' templates: - imports: import tempest + imports: import gnuradio.tempest as tempest make: tempest.image_source(${image_file}, ${Hvisible}, ${Vvisible}, ${Htotal}, ${Vtotal}, ${repeatmode}) parameters: diff --git a/grc/tempest_infer_screen_resolution.block.yml b/grc/tempest_infer_screen_resolution.block.yml new file mode 100644 index 0000000..52b741c --- /dev/null +++ b/grc/tempest_infer_screen_resolution.block.yml @@ -0,0 +1,31 @@ +id: tempest_infer_screen_resolution +label: Infers Screen Resolution +category: '[Tempest]' +templates: + imports: import gnuradio.tempest as tempest + make: tempest.infer_screen_resolution(${sample_rate}, ${fft_size}, ${refresh_rate}, + ${automatic_mode}) + callbacks: + - set_refresh_rate(${refresh_rate}) +parameters: +- id: sample_rate + label: Sample rate + dtype: int +- id: fft_size + label: Fft size + dtype: int +- id: refresh_rate + label: Refresh rate + dtype: float +- id: automatic_mode + label: Automatic_mode + dtype: raw +inputs: +- label: in + domain: stream + dtype: float +outputs: +- label: out + domain: stream + dtype: float +file_format: 1 diff --git a/grc/tempest_message_to_var.block.yml b/grc/tempest_message_to_var.block.yml new file mode 100644 index 0000000..0f1afe5 --- /dev/null +++ b/grc/tempest_message_to_var.block.yml @@ -0,0 +1,19 @@ +id: tempest_message_to_var +label: message_to_var +category: '[Tempest]' + +parameters: +- id: target + label: Variable + dtype: string + default: 'delay_0' +inputs: +- label: port0 + domain: message + + +templates: + imports: import gnuradio.tempest as tempest + make: tempest.message_to_var(${ 'self.set_' + context.get('target')() }) + +file_format: 1 diff --git a/grc/tempest_normalize_flow.block.yml b/grc/tempest_normalize_flow.block.yml index 688caea..93e1701 100644 --- a/grc/tempest_normalize_flow.block.yml +++ b/grc/tempest_normalize_flow.block.yml @@ -2,7 +2,7 @@ id: tempest_normalize_flow label: Normalize Flow category: '[Tempest]' templates: - imports: import tempest + imports: import gnuradio.tempest as tempest make: tempest.normalize_flow(${min}, ${max}, ${window}, ${alpha_avg}, ${update_proba}) callbacks: - set_min_max(${min},${max}) diff --git a/grc/tempest_sampling_synchronization.block.yml b/grc/tempest_sampling_synchronization.block.yml index d662392..1678d15 100644 --- a/grc/tempest_sampling_synchronization.block.yml +++ b/grc/tempest_sampling_synchronization.block.yml @@ -2,7 +2,7 @@ id: tempest_sampling_synchronization label: Sampling synchronization category: '[Tempest]' templates: - imports: import tempest + imports: import gnuradio.tempest as tempest make: tempest.sampling_synchronization(${Htotal}, ${manual_correction}) callbacks: - set_Htotal(${Htotal}) diff --git a/grc/tempest_ssamp_correction.block.yml b/grc/tempest_ssamp_correction.block.yml new file mode 100644 index 0000000..b14bc40 --- /dev/null +++ b/grc/tempest_ssamp_correction.block.yml @@ -0,0 +1,49 @@ +id: tempest_ssamp_correction +label: Sampling Correction Interpolator +category: '[Tempest]' + +templates: + imports: import gnuradio.tempest as tempest + make: tempest.ssamp_correction(${Htotal}, ${Vtotal}, ${correct_sampling}, ${max_deviation}) + + callbacks: + - set_Htotal_Vtotal(${Htotal}, ${Vtotal}) +# Make one 'parameters' list entry for every parameter you want settable from the GUI. +# Keys include: +# * id (makes the value accessible as \$keyname, e.g. in the make entry) +# * label (label shown in the GUI) +# * dtype (e.g. int, float, complex, byte, short, xxx_vector, ...) + +parameters: +- id: Htotal + label: Horizontal px + dtype: int +- id: Vtotal + label: Vertical px + dtype: int +- id: correct_sampling + label: Correct sampling? + dtype: enum + default: 1 + options: [1, 0] + option_labels: ['Yes', 'No'] +- id: max_deviation + label: Max. deviation (%) + dtype: float + default: 10 +inputs: +- label: in + domain: stream + dtype: complex +- label: ratio + domain: message + optional: true +- label: en + domain: message + optional: true +outputs: +- label: out + domain: stream + dtype: complex + +file_format: 1 \ No newline at end of file diff --git a/grc/tempest_sync_detector.block.yml b/grc/tempest_sync_detector.block.yml new file mode 100644 index 0000000..af119c7 --- /dev/null +++ b/grc/tempest_sync_detector.block.yml @@ -0,0 +1,32 @@ +id: tempest_sync_detector +label: Sync Detector +category: '[Tempest]' +templates: + imports: import gnuradio.tempest as tempest + make: tempest.sync_detector(${hscreen}, ${vscreen}, ${hblanking}, ${vblanking}) +parameters: +- id: hscreen + label: Hscreen + dtype: int +- id: vscreen + label: Vscreen + dtype: int +- id: hblanking + label: Hblanking + dtype: int +- id: vblanking + label: Vblanking + dtype: int +inputs: +- label: in + domain: stream + dtype: complex +- label: en + domain: message + optional: true +outputs: +- label: out + domain: stream + dtype: complex +file_format: 1 + diff --git a/grc/tempest_tempest_msgbtn.block.yml b/grc/tempest_tempest_msgbtn.block.yml new file mode 100644 index 0000000..25a816b --- /dev/null +++ b/grc/tempest_tempest_msgbtn.block.yml @@ -0,0 +1,68 @@ +id: tempest_tempest_msgbtn +label: GUI Button - Message Passer +category: '[Tempest]' +flags: [ show_id, python ] + +parameters: +- id: label + label: Label + dtype: string + hide: ${ ('none' if label else 'part') } +- id: type + label: Type + dtype: enum + default: bool + options: [real, int, string, bool] + option_labels: [Float, Integer, String, Boolean] + option_attributes: + conv: [float, int, str, bool] + hide: part +- id: msgName + label: Message Property Name + dtype: string + default: 'pressed' +- id: value + label: Message Value + dtype: ${ type } + default: '1' +- id: relBackgroundColor + label: Button Background + dtype: enum + default: 'default' + options: ['default', 'silver', 'gray', 'black', 'white', 'red', 'green', 'blue', 'navy', 'yellow', 'orange', 'purple', 'lime', 'aqua', 'teal'] + option_labels: ['default', 'silver', 'gray', 'black', 'white', 'red', 'green', 'blue', 'navy', 'yellow', 'orange', 'purple', 'lime', 'aqua', 'teal'] + hide: 'part' +- id: relFontColor + label: Button Font Color + dtype: enum + default: 'default' + options: ['default', 'silver', 'gray', 'black', 'white', 'red', 'green', 'blue', 'navy', 'yellow', 'orange', 'purple', 'lime', 'aqua', 'teal'] + option_labels: ['default', 'silver', 'gray', 'black', 'white', 'red', 'green', 'blue', 'navy', 'yellow', 'orange', 'purple', 'lime', 'aqua', 'teal'] + hide: 'part' +- id: gui_hint + label: GUI Hint + dtype: gui_hint + hide: part + +outputs: +- domain: message + id: pressed + optional: false + +templates: + imports: import gnuradio.tempest as tempest + var_make: self.${id} = None + make: |- + <% + win = '_%s_toggle_button'%id + %>\ + ${win} = tempest.tempest_msgbtn(${(label if (len(label) - 2 > 0) else repr(id))}, ${msgName},${value},"${relBackgroundColor}","${relFontColor}") + self.${id} = ${win} + ${gui_hint() % win} + + +documentation: |- + This block creates a variable push button that creates a message when clicked. Leave the label blank to use the variable id as the label. + You can define both the output message pmt name as well as the value and value type. + The GUI hint can be used to position the widget within the application. The hint is of the form [tab_id@tab_index]: [row, col, row_span, col_span]. Both the tab specification and the grid position are optional. +file_format: 1 diff --git a/include/gnuradio/tempest/CMakeLists.txt b/include/gnuradio/tempest/CMakeLists.txt new file mode 100644 index 0000000..9275180 --- /dev/null +++ b/include/gnuradio/tempest/CMakeLists.txt @@ -0,0 +1,25 @@ +# Copyright 2011,2012 Free Software Foundation, Inc. +# +# This file was generated by gr_modtool, a tool from the GNU Radio framework +# This file is a part of gr-tempest +# +# SPDX-License-Identifier: GPL-3.0-or-later +# + +######################################################################## +# Install public header files +######################################################################## +install(FILES + api.h + sampling_synchronization.h + framing.h + Hsync.h + normalize_flow.h + fine_sampling_synchronization.h + sync_detector.h + frame_drop.h + fft_peak_fine_sampling_sync.h + infer_screen_resolution.h + ssamp_correction.h + DESTINATION include/gnuradio/tempest +) diff --git a/include/tempest/Hsync.h b/include/gnuradio/tempest/Hsync.h similarity index 95% rename from include/tempest/Hsync.h rename to include/gnuradio/tempest/Hsync.h index 657fab8..52cbaf2 100644 --- a/include/tempest/Hsync.h +++ b/include/gnuradio/tempest/Hsync.h @@ -26,7 +26,7 @@ #ifndef INCLUDED_TEMPEST_HSYNC_H #define INCLUDED_TEMPEST_HSYNC_H -#include +#include #include namespace gr { @@ -40,7 +40,7 @@ namespace gr { class TEMPEST_API Hsync : virtual public gr::block { public: - typedef boost::shared_ptr sptr; + typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of tempest::Hsync. diff --git a/include/gnuradio/tempest/api.h b/include/gnuradio/tempest/api.h new file mode 100644 index 0000000..049364d --- /dev/null +++ b/include/gnuradio/tempest/api.h @@ -0,0 +1,22 @@ +/* + * Copyright 2011 Free Software Foundation, Inc. + * + * This file was generated by gr_modtool, a tool from the GNU Radio framework + * This file is a part of gr-tempest + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +#ifndef INCLUDED_TEMPEST_API_H +#define INCLUDED_TEMPEST_API_H + +#include + +#ifdef gnuradio_tempest_EXPORTS +#define TEMPEST_API __GR_ATTR_EXPORT +#else +#define TEMPEST_API __GR_ATTR_IMPORT +#endif + +#endif /* INCLUDED_TEMPEST_API_H */ diff --git a/include/gnuradio/tempest/fft_peak_fine_sampling_sync.h b/include/gnuradio/tempest/fft_peak_fine_sampling_sync.h new file mode 100644 index 0000000..ea3ffcc --- /dev/null +++ b/include/gnuradio/tempest/fft_peak_fine_sampling_sync.h @@ -0,0 +1,60 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef INCLUDED_TEMPEST_FFT_PEAK_FINE_SAMPLING_SYNC_H +#define INCLUDED_TEMPEST_FFT_PEAK_FINE_SAMPLING_SYNC_H + +#include +#include + +namespace gr { + namespace tempest { + + /*! + * \brief <+description of block+> + * \ingroup tempest + * + */ + class TEMPEST_API fft_peak_fine_sampling_sync : virtual public gr::block + { + public: + typedef std::shared_ptr sptr; + + /*! + * \brief Return a shared_ptr to a new instance of tempest::fft_peak_fine_sampling_sync. + * + * To avoid accidental use of raw pointers, tempest::fft_peak_fine_sampling_sync's + * constructor is in a private implementation + * class. tempest::fft_peak_fine_sampling_sync::make is the public interface for + * creating new instances. + */ + static sptr make(int sample_rate, int size, int refresh_rate, int Vvisible, int Hvisible, bool automatic_mode); + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_FFT_PEAK_FINE_SAMPLING_SYNC_H */ + diff --git a/include/tempest/fine_sampling_synchronization.h b/include/gnuradio/tempest/fine_sampling_synchronization.h similarity index 95% rename from include/tempest/fine_sampling_synchronization.h rename to include/gnuradio/tempest/fine_sampling_synchronization.h index 4f95b37..4b1225f 100644 --- a/include/tempest/fine_sampling_synchronization.h +++ b/include/gnuradio/tempest/fine_sampling_synchronization.h @@ -27,7 +27,7 @@ #ifndef INCLUDED_TEMPEST_FINE_SAMPLING_SYNCHRONIZATION_H #define INCLUDED_TEMPEST_FINE_SAMPLING_SYNCHRONIZATION_H -#include +#include #include namespace gr { @@ -41,7 +41,7 @@ namespace gr { class TEMPEST_API fine_sampling_synchronization : virtual public gr::block { public: - typedef boost::shared_ptr sptr; + typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of tempest::fine_sampling_synchronization. diff --git a/include/gnuradio/tempest/frame_drop.h b/include/gnuradio/tempest/frame_drop.h new file mode 100644 index 0000000..331c3b0 --- /dev/null +++ b/include/gnuradio/tempest/frame_drop.h @@ -0,0 +1,60 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef INCLUDED_TEMPEST_FRAME_DROP_H +#define INCLUDED_TEMPEST_FRAME_DROP_H + +#include +#include + +namespace gr { + namespace tempest { + + /*! + * \brief <+description of block+> + * \ingroup tempest + * + */ + class TEMPEST_API frame_drop : virtual public gr::block + { + public: + typedef std::shared_ptr sptr; + + /*! + * \brief Return a shared_ptr to a new instance of tempest::frame_drop. + * + * To avoid accidental use of raw pointers, tempest::frame_drop's + * constructor is in a private implementation + * class. tempest::frame_drop::make is the public interface for + * creating new instances. + */ + static sptr make(int Htotal, int Vtotal, int correct_sampling, float max_deviation, float update_proba, double actual_samp_rate); + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_FRAME_DROP_H */ + diff --git a/include/tempest/framing.h b/include/gnuradio/tempest/framing.h similarity index 95% rename from include/tempest/framing.h rename to include/gnuradio/tempest/framing.h index c764f9c..762b1b5 100644 --- a/include/tempest/framing.h +++ b/include/gnuradio/tempest/framing.h @@ -27,7 +27,7 @@ #ifndef INCLUDED_TEMPEST_FRAMING_H #define INCLUDED_TEMPEST_FRAMING_H -#include +#include #include namespace gr { @@ -41,7 +41,7 @@ namespace gr { class TEMPEST_API framing : virtual public gr::block { public: - typedef boost::shared_ptr sptr; + typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of tempest::framing. diff --git a/include/gnuradio/tempest/infer_screen_resolution.h b/include/gnuradio/tempest/infer_screen_resolution.h new file mode 100644 index 0000000..22ff739 --- /dev/null +++ b/include/gnuradio/tempest/infer_screen_resolution.h @@ -0,0 +1,62 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef INCLUDED_TEMPEST_INFER_SCREEN_RESOLUTION_H +#define INCLUDED_TEMPEST_INFER_SCREEN_RESOLUTION_H + +#include +#include + +namespace gr { + namespace tempest { + + /*! + * \brief <+description of block+> + * \ingroup tempest + * + */ + class TEMPEST_API infer_screen_resolution : virtual public gr::block + { + public: + typedef std::shared_ptr sptr; + + virtual void set_refresh_rate(float refresh_rate) = 0; + + /*! + * \brief Return a shared_ptr to a new instance of tempest::infer_screen_resolution. + * + * To avoid accidental use of raw pointers, tempest::infer_screen_resolution's + * constructor is in a private implementation + * class. tempest::infer_screen_resolution::make is the public interface for + * creating new instances. + */ + static sptr make(int sample_rate, int fft_size, float refresh_rate, bool automatic_mode); + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_INFER_SCREEN_RESOLUTION_H */ + diff --git a/include/tempest/normalize_flow.h b/include/gnuradio/tempest/normalize_flow.h similarity index 95% rename from include/tempest/normalize_flow.h rename to include/gnuradio/tempest/normalize_flow.h index 24693fb..a19803c 100644 --- a/include/tempest/normalize_flow.h +++ b/include/gnuradio/tempest/normalize_flow.h @@ -26,7 +26,7 @@ #ifndef INCLUDED_TEMPEST_NORMALIZE_FLOW_H #define INCLUDED_TEMPEST_NORMALIZE_FLOW_H -#include +#include #include namespace gr { @@ -40,7 +40,7 @@ namespace gr { class TEMPEST_API normalize_flow : virtual public gr::sync_block { public: - typedef boost::shared_ptr sptr; + typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of tempest::normalize_flow. diff --git a/include/tempest/sampling_synchronization.h b/include/gnuradio/tempest/sampling_synchronization.h similarity index 95% rename from include/tempest/sampling_synchronization.h rename to include/gnuradio/tempest/sampling_synchronization.h index 9d54df5..25fad2b 100644 --- a/include/tempest/sampling_synchronization.h +++ b/include/gnuradio/tempest/sampling_synchronization.h @@ -26,7 +26,7 @@ #ifndef INCLUDED_TEMPEST_SAMPLING_SYNCHRONIZATION_H #define INCLUDED_TEMPEST_SAMPLING_SYNCHRONIZATION_H -#include +#include #include namespace gr { @@ -40,7 +40,7 @@ namespace gr { class TEMPEST_API sampling_synchronization : virtual public gr::block { public: - typedef boost::shared_ptr sptr; + typedef std::shared_ptr sptr; /*! * \brief Return a shared_ptr to a new instance of tempest::sampling_synchronization. diff --git a/include/gnuradio/tempest/ssamp_correction.h b/include/gnuradio/tempest/ssamp_correction.h new file mode 100644 index 0000000..fbf7219 --- /dev/null +++ b/include/gnuradio/tempest/ssamp_correction.h @@ -0,0 +1,61 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef INCLUDED_TEMPEST_SSAMP_CORRECTION_H +#define INCLUDED_TEMPEST_SSAMP_CORRECTION_H + +#include +#include + +namespace gr { + namespace tempest { + + /*! + * \brief <+description of block+> + * \ingroup tempest + * + */ + class TEMPEST_API ssamp_correction : virtual public gr::block + { + public: + typedef std::shared_ptr sptr; + + /*! + * \brief Return a shared_ptr to a new instance of tempest::ssamp_correction. + * + * To avoid accidental use of raw pointers, tempest::ssamp_correction's + * constructor is in a private implementation + * class. tempest::ssamp_correction::make is the public interface for + * creating new instances. + */ + static sptr make(int Htotal, int Vtotal, int correct_sampling, float max_deviation); + virtual void set_Htotal_Vtotal(int Htotal, int Vtotal) = 0; + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_SSAMP_CORRECTION_H */ + diff --git a/include/gnuradio/tempest/sync_detector.h b/include/gnuradio/tempest/sync_detector.h new file mode 100644 index 0000000..e671ef5 --- /dev/null +++ b/include/gnuradio/tempest/sync_detector.h @@ -0,0 +1,60 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef INCLUDED_TEMPEST_SYNC_DETECTOR_H +#define INCLUDED_TEMPEST_SYNC_DETECTOR_H + +#include +#include + +namespace gr { + namespace tempest { + + /*! + * \brief <+description of block+> + * \ingroup tempest + * + */ + class TEMPEST_API sync_detector : virtual public gr::block + { + public: + typedef std::shared_ptr sptr; + + /*! + * \brief Return a shared_ptr to a new instance of tempest::sync_detector. + * + * To avoid accidental use of raw pointers, tempest::sync_detector's + * constructor is in a private implementation + * class. tempest::sync_detector::make is the public interface for + * creating new instances. + */ + static sptr make(int hscreen, int vscreen, int hblanking, int vblanking); + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_SYNC_DETECTOR_H */ + diff --git a/include/tempest/CMakeLists.txt b/include/tempest/CMakeLists.txt deleted file mode 100644 index 7ba9159..0000000 --- a/include/tempest/CMakeLists.txt +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 2011,2012 Free Software Foundation, Inc. -# -# This file was generated by gr_modtool, a tool from the GNU Radio framework -# This file is a part of gr-tempest -# -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. - -######################################################################## -# Install public header files -######################################################################## -install(FILES - api.h - sampling_synchronization.h - framing.h - Hsync.h - normalize_flow.h - fine_sampling_synchronization.h DESTINATION include/tempest -) diff --git a/include/tempest/api.h b/include/tempest/api.h deleted file mode 100644 index 6c5e585..0000000 --- a/include/tempest/api.h +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright 2011 Free Software Foundation, Inc. - * - * This file was generated by gr_modtool, a tool from the GNU Radio framework - * This file is a part of gr-tempest - * - * GNU Radio is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3, or (at your option) - * any later version. - * - * GNU Radio is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GNU Radio; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, - * Boston, MA 02110-1301, USA. - */ - -#ifndef INCLUDED_TEMPEST_API_H -#define INCLUDED_TEMPEST_API_H - -#include - -#ifdef gnuradio_tempest_EXPORTS -#define TEMPEST_API __GR_ATTR_EXPORT -#else -#define TEMPEST_API __GR_ATTR_IMPORT -#endif - -#endif /* INCLUDED_TEMPEST_API_H */ diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index ec2230a..1e7a8e0 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -3,20 +3,8 @@ # This file was generated by gr_modtool, a tool from the GNU Radio framework # This file is a part of gr-tempest # -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. +# SPDX-License-Identifier: GPL-3.0-or-later # -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. ######################################################################## # Setup library @@ -29,6 +17,11 @@ list(APPEND tempest_sources Hsync_impl.cc normalize_flow_impl.cc fine_sampling_synchronization_impl.cc + sync_detector_impl.cc + frame_drop_impl.cc + fft_peak_fine_sampling_sync_impl.cc + infer_screen_resolution_impl.cc + ssamp_correction_impl.cc ) set(tempest_sources "${tempest_sources}" PARENT_SCOPE) @@ -38,7 +31,7 @@ if(NOT tempest_sources) endif(NOT tempest_sources) add_library(gnuradio-tempest SHARED ${tempest_sources}) -target_link_libraries(gnuradio-tempest gnuradio::gnuradio-runtime gnuradio::gnuradio-blocks gnuradio::gnuradio-fft gnuradio::gnuradio-filter Volk::volk) +target_link_libraries(gnuradio-tempest gnuradio::gnuradio-runtime gnuradio::gnuradio-blocks gnuradio::gnuradio-fft gnuradio::gnuradio-filter) target_include_directories(gnuradio-tempest PUBLIC $ PUBLIC $ diff --git a/lib/Hsync_impl.h b/lib/Hsync_impl.h index b602da8..fc3eec4 100644 --- a/lib/Hsync_impl.h +++ b/lib/Hsync_impl.h @@ -21,7 +21,7 @@ #ifndef INCLUDED_TEMPEST_HSYNC_IMPL_H #define INCLUDED_TEMPEST_HSYNC_IMPL_H -#include +#include namespace gr { namespace tempest { diff --git a/lib/fft_peak_fine_sampling_sync_impl.cc b/lib/fft_peak_fine_sampling_sync_impl.cc new file mode 100644 index 0000000..4dcf943 --- /dev/null +++ b/lib/fft_peak_fine_sampling_sync_impl.cc @@ -0,0 +1,315 @@ +/* -*- c++ -*- */ +/** + * Copyright 2021 + * Pablo Bertrand + * Felipe Carrau + * Victoria Severi + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + * @file fft_peak_fine_sampling_sync_impl.cc + * + * gr-tempest + * + * @date September 19, 2021 + * @author Pablo Bertrand + * @author Felipe Carrau + * @author Victoria Severi + */ + +/********************************************************** + * Include statements + **********************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include "fft_peak_fine_sampling_sync_impl.h" +#include +#include +#include + +/********************************************************** + * Constant and macro definitions + **********************************************************/ + + +uint32_t calculate_peak_index_relative_to_search_skip(const float *in, uint32_t search_skip, uint32_t search_range) +{ + uint32_t peak_index; + volk_32f_index_max_32u(&peak_index, &in[search_skip], search_range); + return peak_index += search_skip; + +} + +#define N 64 + +namespace gr { + namespace tempest { + + fft_peak_fine_sampling_sync::sptr + fft_peak_fine_sampling_sync::make(int sample_rate, int size, int refresh_rate, int Vvisible, int Hvisible, bool automatic_mode) + { + return gnuradio::get_initial_sptr + (new fft_peak_fine_sampling_sync_impl(sample_rate, size, refresh_rate, Vvisible, Hvisible, automatic_mode)); + } + + /********************************************************** + * Function bodies + **********************************************************/ + /* + * The private constructor + */ + fft_peak_fine_sampling_sync_impl::fft_peak_fine_sampling_sync_impl(int sample_rate, int size, int refresh_rate, int Vvisible, int Hvisible, bool automatic_mode) + : gr::block("fft_peak_fine_sampling_sync", + gr::io_signature::make(1, 1, sizeof(float)), + gr::io_signature::make(1, 1, sizeof(float))) + { + d_start_fft_peak_finder = 1; + + //Received parameters + d_sample_rate = sample_rate; + d_fft_size = size; + + //Search values + d_search_skip = 0; + d_search_margin = d_fft_size; + d_vtotal_est = 0; + d_peak_1 = 0; + d_peak_2 = 0; + + //Parameters to publish + d_refresh_rate = refresh_rate; + d_refresh_rate_est = 0; + d_Hvisible = Hvisible; + d_Vvisible = Vvisible; + d_Hblank = 0; + d_Vblank = 0; + + d_start = true; + + d_ratio = 0; + d_accumulator = 0.0f; + //d_real_line = 827; + d_real_line = 827.076923077; + + //Counters + d_work_counter = 1; + + //PMT ports + message_port_register_out(pmt::mp("en")); + message_port_register_out(pmt::mp("ratio")); + message_port_register_out(pmt::mp("rate")); + + message_port_register_in(pmt::mp("en")); + + // PMT handlers + set_msg_handler(pmt::mp("en"), [this](const pmt::pmt_t& msg) {fft_peak_fine_sampling_sync_impl::set_ena_msg(msg); }); + + set_history(d_fft_size); + + printf("[TEMPEST] Welcome to gr-tempest. Once the sampling is being corrected properly and the vertical lines of the target monitor are indeed vertical, please hit the Stop button to stop autocorrelation calculation and begin the vertical and horizontal synchronization .\n"); + } + + //--------------------------------------------------------- + /* + * Our virtual destructor. + */ + fft_peak_fine_sampling_sync_impl::~fft_peak_fine_sampling_sync_impl() + { + } + + void fft_peak_fine_sampling_sync_impl::set_ena_msg(pmt::pmt_t msg) + { + gr::thread::scoped_lock l(d_mutex); + if (pmt::is_bool(msg)) { + bool en = pmt::to_bool(msg); + d_start_fft_peak_finder = !en; + printf("FFT peak finder. Ratio calculation stopped.\n"); + } else { + GR_LOG_WARN(d_logger, + "FFT peak finder: Non-PMT type received, expecting Boolean PMT\n"); + if(d_start_fft_peak_finder) + { + printf("FFT peak finder. Ratio calculation stopped.\n"); + d_start_fft_peak_finder = 0; + } + else + { + printf("FFT peak finder. Ratio calculation restarted.\n"); + d_start_fft_peak_finder = 1; + } + /* + Stop FFT_autocorrelation block. + */ + message_port_pub( + pmt::mp("en"), + pmt::from_bool(d_start_fft_peak_finder) + ); + + /* Hardware USRP rate command: */ + + double new_freq = ((double)1.0/((double)(d_ratio + 1))) * (double)d_sample_rate; + + message_port_pub(pmt::mp("rate"), pmt::cons(pmt::mp("rate"), pmt::from_double(new_freq))); + d_sample_rate = new_freq; + new_freq = d_ratio; + message_port_pub( + pmt::mp("ratio"), pmt::cons( + pmt::mp("ratio"), + pmt::from_double(new_freq) + ) + ); + + } + } + + //--------------------------------------------------------- + + void fft_peak_fine_sampling_sync_impl::forecast (int noutput_items, gr_vector_int &ninput_items_required) + { + ninput_items_required[0] = noutput_items; // Funny Obs: Leaving ninput_items_required uninitialized creates chaos. + } + + //--------------------------------------------------------- + + + //--------------------------------------------------------- + int fft_peak_fine_sampling_sync_impl::general_work (int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) + { + const float *in = (const float *) input_items[0]; + float *out = (float *) output_items[0]; + + gr::thread::scoped_lock l(d_mutex); + + if(!d_start_fft_peak_finder) + { + consume_each(noutput_items); + return noutput_items; + } + else + { + ///////////////////////////// + // RATIO SEARCH // + ///////////////////////////// + /* + If we receive a full d_fft_size from the fft_autocorrelation block + we process the full d_fft_size vector to find the best two peaks, peak_1, peak_2. + We should consume d_fft_size data from the in[0] to the in[d_fft_size] + and compute the distance between peak_1 and peak_2 in samples. + The value of d_accumulator should be the moving average of + the distance between peak_2 and peak_1. + So we divide the thing over N and repeat the measurement N times. + */ + uint32_t one_full_frame_in_samples = floor( (1.0/d_refresh_rate) * d_sample_rate ); + + d_search_margin = d_fft_size; + d_search_skip = 0; + d_peak_1 = calculate_peak_index_relative_to_search_skip( + in, + d_search_skip, + d_search_margin + ); + + d_search_skip = d_peak_1 + one_full_frame_in_samples - floor((0.001)*d_sample_rate); + d_search_margin = 200 + floor((0.001)*4*d_sample_rate); + d_peak_2 = calculate_peak_index_relative_to_search_skip( + in, + d_search_skip, + d_search_margin + ); + + d_accumulator += (long double)(d_peak_2-d_peak_1)/(long double)(N); + + if(d_work_counter%N == 0) + { + long double ratio = (long double)(d_accumulator)/(long double)(d_Hvisible*d_Vvisible); + + d_ratio = (ratio-1); + + /* + Send ratio message to the interpolator. + */ + double new_freq = d_ratio; + message_port_pub( + pmt::mp("ratio"), pmt::cons( + pmt::mp("ratio"), + pmt::from_double(new_freq) + ) + ); + printf("\r\n[FFT_peak_finder] Ratio = \t %Lf. \t d_accumulator = \t %Lf. \t \r\n ", ratio, d_accumulator); + + d_accumulator = 0; + d_work_counter = 0; + /* + Maybe sleep for a few milliseconds here. + */ + long period_ms = (1000); + //boost::this_thread::sleep( boost::posix_time::milliseconds(static_cast(period_ms)) ); + + + + d_sample_counter = 0; + } + + + + } + memcpy(&out[0], &in[0], noutput_items*sizeof(float)); // el tag deberia hacerse repetidamente aca con d_peak_1 d_peak_2 + + d_work_counter++; + d_sample_counter+=noutput_items; + + + add_item_tag( + 0, + nitems_written(0) + d_peak_1, + pmt::mp("peak_1"), + pmt::PMT_T + ); + add_item_tag( + 0, + nitems_written(0) + d_peak_2, + pmt::mp("peak_2"), pmt::PMT_T + ); + add_item_tag( + 0, + nitems_written(0) + d_search_skip, + pmt::mp("Search1"), + pmt::PMT_T + ); + add_item_tag( + 0, + nitems_written(0) + d_search_skip + d_search_margin, + pmt::mp("Search2"), pmt::PMT_T + ); + consume_each (noutput_items); + + return noutput_items; + + } + + } /* namespace tempest */ +} /* namespace gr */ + diff --git a/lib/fft_peak_fine_sampling_sync_impl.h b/lib/fft_peak_fine_sampling_sync_impl.h new file mode 100644 index 0000000..ea1c0b8 --- /dev/null +++ b/lib/fft_peak_fine_sampling_sync_impl.h @@ -0,0 +1,294 @@ +/* -*- c++ -*- */ +/** + * Copyright 2021 + * Pablo Bertrand + * Felipe Carrau + * Victoria Severi + * + * Instituto de Ingeniería Eléctrica, Facultad de Ingeniería, + * Universidad de la República, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + * @file fft_peak_fine_sampling_sync_impl.h + * + * @brief Block that uses the signal autocorrelation to + * continuously calculate the interpolation ratio required, + * for as long as it takes to properly correct sampling. + * + * gr-tempest + * + * @date September 19, 2021 + * @author Pablo Bertrand + * @author Felipe Carrau + * @author Victoria Severi + */ + +/********************************************************** + * Constant and macro definitions + **********************************************************/ + +#ifndef INCLUDED_TEMPEST_FFT_PEAK_FINE_SAMPLING_SYNC_IMPL_H +#define INCLUDED_TEMPEST_FFT_PEAK_FINE_SAMPLING_SYNC_IMPL_H +#define lowpasscoeff 0.1 +#define MAX_PERIOD 0.0000284 +/********************************************************** + * Include statements + **********************************************************/ + +#include + +namespace gr { + namespace tempest { + + class fft_peak_fine_sampling_sync_impl : public fft_peak_fine_sampling_sync + { + private: + + /********************************************************** + * Data declarations + **********************************************************/ + + gr::thread::mutex d_mutex; + bool d_start_fft_peak_finder = 1; + + //Received parameters + int d_sample_rate; + int d_fft_size; + + + double d_ratio; + long double d_accumulator; + long double d_real_line; + bool d_start; + + + //Search values + uint32_t d_search_skip; + uint32_t d_search_margin; + uint32_t d_vtotal_est; + uint32_t d_peak_1; + uint32_t d_peak_2; + + //Results to publish + float d_refresh_rate; + + //Counters + uint32_t d_work_counter; + uint32_t d_sample_counter; + + //Search values + float d_refresh_rate_est; + bool d_flag; + + //Resolution results + int d_Hsize; + int d_Vsize; + int d_Vvisible; + int d_Hvisible; + long d_Hblank; + long d_Vblank; + + void search_table(float fv_estimated) + { + if (fv_estimated<65) + { + d_refresh_rate=60; + if (d_vtotal_est<576.5) + { + d_Vvisible=480; + d_Vsize=525; + d_Hvisible=640; + d_Hsize=800; + } + if (d_vtotal_est>576.5 && d_vtotal_est<687) + { + //800x600 + d_Hvisible=800; + d_Hsize=1056; + d_Vvisible=600; + d_Vsize=628; + } + if (d_vtotal_est>687 && d_vtotal_est<776) + { + //1280x720 + d_Hvisible=1280; + d_Hsize=1664; + d_Vvisible=720; + d_Vsize=746; + } + if (d_vtotal_est>776 && d_vtotal_est<869) + { + //1024x768 + d_Hvisible=1024; + d_Hsize=1344; + d_Vvisible=768; + d_Vsize=806; + } + if (d_vtotal_est>869 && d_vtotal_est<966) + { + //1600x900 + d_Hvisible=1600; + d_Hsize=2128; + d_Vvisible=900; + d_Vsize=932; + } + if (d_vtotal_est>966 && d_vtotal_est<1033) + { + //1280x960 + d_Hvisible=1280; + d_Hsize=1800; + d_Vvisible=960; + d_Vsize=1000; + } + if (d_vtotal_est>1033 && d_vtotal_est<1077.5) + { + //1280x1024 + d_Hvisible=1280; + d_Hsize=1688; + d_Vvisible=1024; + d_Vsize=1066; + } + if (d_vtotal_est>1077.5 && d_vtotal_est<1107) + { + //1680x1050 + d_Hvisible=1680; + d_Hsize=2240; + d_Vvisible=1050; + d_Vsize=1089; + } + if (d_vtotal_est>1107 && d_vtotal_est<1300) + { + //1920x1080 + d_Hvisible=1920; + d_Hsize=2200; + d_Vvisible=1080; + d_Vsize=1125; + } + } + if (fv_estimated>65 && fv_estimated<72.5) + { + d_refresh_rate=(int)70.1; + if (d_vtotal_est>400 && d_vtotal_est<500) + { + d_Hvisible=720; + d_Hsize=900; + d_Vvisible=400; + d_Vsize=449; + } + } + if (fv_estimated>72.5 && fv_estimated<80) + { + d_refresh_rate=75; + if (d_vtotal_est<562.5) + { + //640x480 + d_Hvisible=640; + d_Hsize=840; + d_Vvisible=480; + d_Vsize=500; + } + if (d_vtotal_est>562.5 && d_vtotal_est<646) + { + //800x600 + d_Hvisible=800; + d_Hsize=1056; + d_Vvisible=600; + d_Vsize=625; + } + if (d_vtotal_est>646 && d_vtotal_est<733.5) + { + //832x624 + d_refresh_rate=(int)74.6; + d_Hvisible=832; + d_Hsize=1152; + d_Vvisible=624; + d_Vsize=667; + } + if (d_vtotal_est>733.5 && d_vtotal_est<850) + { + //1024x768 + d_refresh_rate=(int)75.1; + d_Hvisible=1024; + d_Hsize=1312; + d_Vvisible=768; + d_Vsize=800; + } + if (d_vtotal_est>850 && d_vtotal_est<983) + { + //1152x864 + d_Hvisible=1152; + d_Hsize=1600; + d_Vvisible=864; + d_Vsize=900; + } + if (d_vtotal_est>983 && d_vtotal_est<1250) + { + //1280x1024 + d_Hvisible=1280; + d_Hsize=1688; + d_Vvisible=1024; + d_Vsize=1066; + } + } + }; + + /********************************************************** + * Private function prototypes + **********************************************************/ + /** + * @brief Function that processes the enable received as PMT + * message from other blocks and assignes it to a variable. + * + * @param pmt_t msg: Message received from autocorrelation + * block during runtime. + */ + void set_ena_msg(pmt::pmt_t msg); + //--------------------------------------------------------- + public: + fft_peak_fine_sampling_sync_impl(int sample_rate, int size, int refresh_rate, int Vvisible, int Hvisible, bool automatic_mode); + ~fft_peak_fine_sampling_sync_impl(); + + /********************************************************** + * Public function prototypes + **********************************************************/ + /** + * @brief Used to establish the amount of samples required + * for a full work iteration. + * + */ + void forecast (int noutput_items, gr_vector_int &ninput_items_required); + //--------------------------------------------------------- + /** + * @brief Main function that carries out the peak searches + * in the autocorrelation signal and uses the results to + * calculate the interpolation ratio required and prints + * it to a PMT port for other blocks to use it as it is + * updated in runtime. + * + */ + int general_work(int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items); + //--------------------------------------------------------- + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_FFT_PEAK_FINE_SAMPLING_SYNC_IMPL_H */ + diff --git a/lib/fine_sampling_synchronization_impl.h b/lib/fine_sampling_synchronization_impl.h index e1bc989..6ad0400 100644 --- a/lib/fine_sampling_synchronization_impl.h +++ b/lib/fine_sampling_synchronization_impl.h @@ -26,7 +26,7 @@ #ifndef INCLUDED_TEMPEST_FINE_SAMPLING_SYNCHRONIZATION_IMPL_H #define INCLUDED_TEMPEST_FINE_SAMPLING_SYNCHRONIZATION_IMPL_H -#include +#include #include #include diff --git a/lib/frame_drop_impl.cc b/lib/frame_drop_impl.cc new file mode 100644 index 0000000..c197809 --- /dev/null +++ b/lib/frame_drop_impl.cc @@ -0,0 +1,222 @@ +/* -*- c++ -*- */ +/** + * Copyright 2021 + * Pablo Bertrand + * Felipe Carrau + * Victoria Severi + * + * Instituto de Ingeniería Eléctrica, Facultad de Ingeniería, + * Universidad de la República, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + * @file frame_drop_impl.cc + * + * gr-tempest + * + * @date September 19, 2021 + * @author Pablo Bertrand + * @author Felipe Carrau + * @author Victoria Severi + */ + +/********************************************************** + * Include statements + **********************************************************/ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include +#include "frame_drop_impl.h" +#include +#include +#include + +namespace gr +{ + namespace tempest + { + + frame_drop::sptr + frame_drop::make(int Htotal, int Vtotal, int correct_sampling, float max_deviation, float update_proba, double actual_samp_rate) + { + return gnuradio::get_initial_sptr + (new frame_drop_impl(Htotal, Vtotal, correct_sampling, max_deviation, update_proba, actual_samp_rate)); + } + + /********************************************************** + * Function bodies + **********************************************************/ + /* + * The private constructor + */ + frame_drop_impl::frame_drop_impl(int Htotal, int Vtotal, int correct_sampling, float max_deviation, float update_proba, double actual_samp_rate) + : gr::block("frame_drop", + gr::io_signature::make(1, 1, sizeof(gr_complex)), + gr::io_signature::make(1, 1, sizeof(gr_complex))), + d_inter(gr::filter::mmse_fir_interpolator_cc()), + d_dist(update_proba), + d_gen(std::random_device{}()) + { + set_relative_rate(1); + + //Counters + d_sample_counter = 0; + d_display_counter = 0; + d_frames_counter = 0; + + //Fixed values + d_discarded_amount_per_frame = 15; + d_proba_of_updating = update_proba; + d_max_deviation = max_deviation; + d_alpha_samp_inc = 1e-1; + d_last_freq = 0; + d_samp_phase = 0; + d_alpha_corr = 1e-6; + + d_start_frame_drop = 0; + + d_Htotal = Htotal; + d_Vtotal = Vtotal; + d_required_for_interpolation = d_Htotal*d_Vtotal; + d_max_deviation_px = (int)std::ceil(d_Htotal*d_max_deviation); + + set_history(d_Vtotal*(d_Htotal+d_max_deviation_px)+1); + + d_peak_line_index = 0; + d_samp_inc_rem = 0; + d_new_interpolation_ratio_rem = 0; + d_next_update = 0; + + // PMT port + message_port_register_in(pmt::mp("ratio")); + + // PMT handler + set_msg_handler(pmt::mp("ratio"),[this](const pmt::pmt_t& msg) {frame_drop_impl::set_ratio_msg(msg); }); + + } + + //--------------------------------------------------------- + /* + * Our virtual destructor. + */ + frame_drop_impl::~frame_drop_impl() + { + } + + //--------------------------------------------------------- + + void frame_drop_impl::forecast (int noutput_items, gr_vector_int &ninput_items_required) + { + int ninputs = ninput_items_required.size (); + for (int i = 0; i < ninputs; i++) + { + ninput_items_required[i] = (int)ceil((noutput_items + 1) * (2+d_samp_inc_rem)) + d_inter.ntaps() ; + } + } + + //--------------------------------------------------------- + + void frame_drop_impl::set_ratio_msg(pmt::pmt_t msg){ + if(pmt::is_pair(msg)) { + pmt::pmt_t key = pmt::car(msg); + pmt::pmt_t val = pmt::cdr(msg); + if(pmt::eq(key, pmt::string_to_symbol("ratio"))) { + if(pmt::is_number(val)) { + d_new_interpolation_ratio_rem = (double)pmt::to_double(val); + printf("Frame dropper: interpolation ratio received = %f \n", d_new_interpolation_ratio_rem); + } + } + } + } + + //--------------------------------------------------------- + + void frame_drop_impl::get_required_samples(int size) + { + uint32_t ii = 0, incr; + int oo = 0; + double s, f; + + //d_samp_inc_rem = (1-d_alpha_samp_inc)*d_samp_inc_rem + d_alpha_samp_inc*d_new_interpolation_ratio_rem; + + while(oo < size) { + s = d_samp_phase + d_samp_inc_rem + 1; + f = floor(s); + incr = (uint32_t)f; + d_samp_phase = s - f; + ii += incr; + + oo++; + } + d_required_for_interpolation = ii; + } + + //--------------------------------------------------------- + + int frame_drop_impl::general_work (int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) + { + const gr_complex *in = (const gr_complex *) input_items[0]; + gr_complex *out = (gr_complex *) output_items[0]; + + int consumed = 0, out_amount = 0, aux; + + d_samp_inc_rem = (1-d_alpha_samp_inc)*d_samp_inc_rem + d_alpha_samp_inc*d_new_interpolation_ratio_rem; + + for (int i=0; i + * Felipe Carrau + * Victoria Severi + * + * Instituto de Ingeniería Eléctrica, Facultad de Ingeniería, + * Universidad de la República, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + * @file frame_drop_impl.h + * + * @brief Block that uses the interpolation ratio to count + * full frames in samples and discard some of them in order + * to reduce the processing needed by other blocks to do the + * interpolation. + * + * gr-tempest + * + * @date September 19, 2021 + * @author Pablo Bertrand + * @author Felipe Carrau + * @author Victoria Severi + */ + +/********************************************************** + * Constant and macro definitions + **********************************************************/ + +#ifndef INCLUDED_TEMPEST_FRAME_DROP_IMPL_H +#define INCLUDED_TEMPEST_FRAME_DROP_IMPL_H + +/********************************************************** + * Include statements + **********************************************************/ + +#include +#include +#include +#include +#include + +namespace gr { + namespace tempest { + + class frame_drop_impl : public frame_drop + { + private: + + /********************************************************** + * Data declarations + **********************************************************/ + + //Counters + int d_display_counter; + int d_frames_counter; + int d_sample_counter; + + //Fixed parameter + int d_discarded_amount_per_frame; + + int d_Htotal; + int d_Vtotal; + int d_correct_sampling; + uint32_t d_required_for_interpolation; + float d_max_deviation; + + std::geometric_distribution d_dist; + std::minstd_rand d_gen; + + float d_proba_of_updating; + int d_next_update; + + //double d_actual_samp_rate; + double d_samp_inc_rem; + double d_new_interpolation_ratio_rem; + double d_samp_phase; + + float d_alpha_samp_inc; + int d_max_deviation_px; + int d_peak_line_index; + + float d_alpha_corr; + double d_last_freq ; + + bool d_start_frame_drop; + + // the interpolating filter + gr::filter::mmse_fir_interpolator_cc d_inter; + gr::thread::mutex d_mutex; + + /********************************************************** + * Private function prototypes + **********************************************************/ + /** + * @brief Function that processes the ratio received as PMT + * message from other blocks and assignes it to a variable. + * + * @param pmt_t msg: Message received from autocorrelation + * block during runtime. + */ + void set_ratio_msg(pmt::pmt_t msg); + //--------------------------------------------------------- + + public: + frame_drop_impl(int Htotal, int Vtotal, int correct_sampling, float max_deviation, float update_proba, double actual_samp_rate); + ~frame_drop_impl(); + + /********************************************************** + * Public function prototypes + **********************************************************/ + /** + * @brief Used to establish the amount of samples required + * for a full work iteration. + * + */ + void forecast (int noutput_items, gr_vector_int &ninput_items_required); + //--------------------------------------------------------- + /** + * @brief Function that emulates the calculation made by + * Fine Sampling Synchronization of the samples required + * for obtained an interpolated result of a certain size. + * + * @param int size: amount of samples desired to result + * from the interpolation process, if the was one. + */ + void get_required_samples(int size); + //--------------------------------------------------------- + /** + * @brief While keeping count of the processed samples, the + * function decides whether each one belongs to a frame that + * it wants to display in the output or not. To do this, it + * runs the calculation for the required samples to + * interpolate a full frame and counts how many times it is + * achieved. + * + */ + int general_work(int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items); + //--------------------------------------------------------- + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_FRAME_DROP_IMPL_H */ + diff --git a/lib/framing_impl.h b/lib/framing_impl.h index 1e7863e..31d963e 100644 --- a/lib/framing_impl.h +++ b/lib/framing_impl.h @@ -26,7 +26,7 @@ #ifndef INCLUDED_TEMPEST_FRAMING_IMPL_H #define INCLUDED_TEMPEST_FRAMING_IMPL_H -#include +#include namespace gr { namespace tempest { diff --git a/lib/infer_screen_resolution_impl.cc b/lib/infer_screen_resolution_impl.cc new file mode 100644 index 0000000..76e5506 --- /dev/null +++ b/lib/infer_screen_resolution_impl.cc @@ -0,0 +1,277 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include "infer_screen_resolution_impl.h" + +#define N 64 +#define lowpasscoeff 0.6 // TODO: check this for every resolution. +#define MAX_PERIOD 0.0000284 + +namespace gr { + namespace tempest { + + infer_screen_resolution::sptr + infer_screen_resolution::make(int sample_rate, int fft_size, float refresh_rate, bool automatic_mode) + { + return gnuradio::get_initial_sptr + (new infer_screen_resolution_impl(sample_rate, fft_size, refresh_rate, automatic_mode)); + } + + + /* + * The private constructor + */ + infer_screen_resolution_impl::infer_screen_resolution_impl(int sample_rate, int fft_size, float refresh_rate, bool automatic_mode) + : gr::block("infer_screen_resolution", + gr::io_signature::make(1, 1, sizeof(float)), + gr::io_signature::make(1, 1, sizeof(float))) + { + d_start_fft_peak_finder = 1; + + //Received parameters + d_sample_rate = sample_rate; + d_fft_size = fft_size; + d_mode = automatic_mode; + + //Search values + d_search_skip = 0; + d_search_margin = d_fft_size; + d_vtotal_est = 800; + d_peak_1 = 0; + d_peak_2 = 0; + + //Parameters to publish + d_refresh_rate = refresh_rate; + d_refresh_rate_est = 0; + d_Hblank = 0; + d_Vblank = 0; + + d_start = true; + + d_ratio = 0; + d_accumulator = 0.0f; + //d_real_line = 827; + d_real_line = 827.076923077; + + //Counters + d_work_counter = 1; + d_i = 0; + + + } + + /* + * Our virtual destructor. + */ + infer_screen_resolution_impl::~infer_screen_resolution_impl() + { + } + + void + infer_screen_resolution_impl::forecast (int noutput_items, gr_vector_int &ninput_items_required) + { + ninput_items_required[0] = noutput_items; + } + + + //--------------------------------------------------------- + + void infer_screen_resolution_impl::set_refresh_rate(float refresh_rate) + { + gr::thread::scoped_lock l(d_mutex); + + //If the refresh rate changed, parameters are reset with callback + d_refresh_rate = refresh_rate; + d_search_skip = d_sample_rate/(d_refresh_rate+0.2); + d_refresh_rate_est = refresh_rate; + printf("[TEMPEST] Setting refresh to %i in infer block.\n", refresh_rate); + } + + //--------------------------------------------------------- + + int + infer_screen_resolution_impl::general_work (int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) + { + const float *in = (const float *) input_items[0]; + float *out = (float *) output_items[0]; + + gr::thread::scoped_lock l(d_mutex); + + if(!d_start_fft_peak_finder) + { + consume_each(noutput_items); + return noutput_items; + } + else + { + ///////////////////////////// + // RATIO SEARCH // + ///////////////////////////// + /* + If we receive a full d_fft_size from the fft_autocorrelation block + we process the full d_fft_size vector to find the best two peaks, peak_1, peak_2. + We should consume d_fft_size data from the in[0] to the in[d_fft_size] + and compute the distance between peak_1 and peak_2 in samples. + The value of d_accumulator should be the moving average of + the distance between peak_2 and peak_1. + So we divide the thing over N and repeat the measurement N times. + */ + if(d_sample_counter > 1) + { + if(d_mode) + { + // Automatic mode. + uint32_t one_full_frame_in_samples = floor( (1.0/d_refresh_rate) * d_sample_rate ); + d_search_margin = d_fft_size; + d_search_skip = 0; + d_peak_1 = calculate_peak_index_relative_to_search_skip( + in, + d_search_skip, + d_search_margin + ); + d_search_skip = d_peak_1 + one_full_frame_in_samples - floor((0.004)*d_sample_rate); + d_search_margin = 200 + floor((0.004)*5*d_sample_rate); + + d_peak_2 = calculate_peak_index_relative_to_search_skip( + in, + d_search_skip, + d_search_margin + ); + + d_accumulator += (long double)(d_peak_2-d_peak_1)/(long double)(N); + } + else + { + // Semi-automatic mode. + d_peak_1 = nitems_written(0) + 0; + d_search_skip = d_sample_rate / (d_refresh_rate + 0.2); + d_search_margin = 10000; + + d_peak_2 = calculate_peak_index_relative_to_search_skip( + in, + d_search_skip, + d_search_margin + ); + + d_accumulator = d_peak_2; + } + + if(d_work_counter%N == 0) + { + uint32_t yt_index = 0, yt_aux = 0; + double fv = (double)d_sample_rate/(double)d_accumulator; + + // Lower the variation of the received refresh rate: + d_refresh_rate_est = ((long) round(fv * lowpasscoeff + (1.0 - lowpasscoeff) * (d_refresh_rate_est))); + + ///////////////////////////// + // HEIGHT SEARCH // + ///////////////////////////// + + int yt_largo = (int)d_sample_rate*(MAX_PERIOD); + + volk_32f_index_max_32u(&yt_index, &in[(d_peak_2)+5], yt_largo); + // The peak search begins a few samples later to avoid repeating the previous result + + double yt = (double)d_sample_rate / (double)((yt_index+5)*fv); + // The same sample movement is compensated + + if (d_flag) + { + if (yt < 1225 && yt > 350) + d_vtotal_est = ((int) round(yt * lowpasscoeff + (1.0 - lowpasscoeff) * (d_vtotal_est))); + + } + else + { + if (yt < 1225 && yt > 350) + { + d_vtotal_est = yt; + d_flag = true; + + } + } + //printf(" yt instant \t %lf \t yt estimate \t %ld \t \n ", yt, d_vtotal_est); + + ///////////////////////////// + // UPDATE RESULTS // + ///////////////////////////// + + int last_result = d_Vvisible; + + search_table(d_refresh_rate_est); + + if (last_result == d_Vvisible) { + d_i++; + } else { + d_i=0; + } + + if (d_i == 15) { + printf(" Hdisplay \t %ld \t Px \t\t Vdisplay \t %ld \t Px \t\t Hsize \t %ld \t Px \t\t Vsize \t %ld \t Px \t\t Refresh Rate \t %f \t Hz \t \n ", d_Hvisible,d_Vvisible,d_Hsize,d_Vsize,d_refresh_rate); + d_i=0; + } + + d_accumulator = 0; + d_work_counter = 0; + d_sample_counter = 0; + } + } + + + } + memcpy(&out[0], &in[0], noutput_items*sizeof(float)); // el tag deberia hacerse repetidamente aca con d_peak_1 d_peak_2 + + d_work_counter++; + d_sample_counter+=noutput_items; + + consume_each (noutput_items); + + add_item_tag( + 0, + nitems_written(0) + d_peak_1, + pmt::mp("peak_1"), + pmt::PMT_T + ); + add_item_tag( + 0, + nitems_written(0) + d_peak_2, + pmt::mp("peak_2"), pmt::PMT_T + ); + return noutput_items; + + } + + } /* namespace tempest */ +} /* namespace gr */ + diff --git a/lib/infer_screen_resolution_impl.h b/lib/infer_screen_resolution_impl.h new file mode 100644 index 0000000..21ab714 --- /dev/null +++ b/lib/infer_screen_resolution_impl.h @@ -0,0 +1,259 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef INCLUDED_TEMPEST_INFER_SCREEN_RESOLUTION_IMPL_H +#define INCLUDED_TEMPEST_INFER_SCREEN_RESOLUTION_IMPL_H + +#include +//#include +#include +#include + +namespace gr { + namespace tempest { + + class infer_screen_resolution_impl : public infer_screen_resolution + { + private: + + /********************************************************** + * Data declarations + **********************************************************/ + + gr::thread::mutex d_mutex; + bool d_start_fft_peak_finder = 1; + + //Received parameters + int d_sample_rate; + int d_fft_size; + + + double d_ratio; + long double d_accumulator; + long double d_real_line; + bool d_start; + + + //Search values + uint32_t d_search_skip; + uint32_t d_search_margin; + uint32_t d_vtotal_est; + uint32_t d_peak_1; + uint32_t d_peak_2; + + //Results to publish + float d_refresh_rate; + + //Counters + uint32_t d_work_counter; + uint32_t d_sample_counter; + int d_i; + + //Search values + float d_refresh_rate_est; + bool d_flag; + bool d_mode; + + //Resolution results + int d_Hsize; + int d_Vsize; + int d_Vvisible; + int d_Hvisible; + long d_Hblank; + long d_Vblank; + + + uint32_t calculate_peak_index_relative_to_search_skip(const float *in, uint32_t search_skip, uint32_t search_range) + { + uint32_t peak_index; + volk_32f_index_max_32u(&peak_index, &in[search_skip], search_range); + return peak_index += search_skip; + }; + + void search_table(float fv_estimated) + { + if (fv_estimated<65 && fv_estimated>55) + { + d_refresh_rate=60; + if (d_vtotal_est<576.5) + { + d_Vvisible=480; + d_Vsize=525; + d_Hvisible=640; + d_Hsize=800; + } + else if (d_vtotal_est>576.5 && d_vtotal_est<687) + { + //800x600 + d_Hvisible=800; + d_Hsize=1056; + d_Vvisible=600; + d_Vsize=628; + } + else if (d_vtotal_est>687 && d_vtotal_est<776) + { + //1280x720 + d_Hvisible=1280; + d_Hsize=1664; + d_Vvisible=720; + d_Vsize=746; + } + else if (d_vtotal_est>776 && d_vtotal_est<869) + { + //1024x768 + d_Hvisible=1024; + d_Hsize=1344; + d_Vvisible=768; + d_Vsize=806; + } + else if (d_vtotal_est>869 && d_vtotal_est<966) + { + //1600x900 + d_Hvisible=1600; + d_Hsize=2128; + d_Vvisible=900; + d_Vsize=932; + } + else if (d_vtotal_est>966 && d_vtotal_est<1033) + { + //1280x960 + d_Hvisible=1280; + d_Hsize=1800; + d_Vvisible=960; + d_Vsize=1000; + } + else if (d_vtotal_est>1033 && d_vtotal_est<1077.5) + { + //1280x1024 + d_Hvisible=1280; + d_Hsize=1688; + d_Vvisible=1024; + d_Vsize=1066; + } + else if (d_vtotal_est>1077.5 && d_vtotal_est<1107) + { + //1680x1050 + d_Hvisible=1680; + d_Hsize=2240; + d_Vvisible=1050; + d_Vsize=1089; + } + else if (d_vtotal_est>1107 && d_vtotal_est<1300) + { + //1920x1080 + d_Hvisible=1920; + d_Hsize=2200; + d_Vvisible=1080; + d_Vsize=1125; + } + } + else if (fv_estimated>65 && fv_estimated<72.5) + { + d_refresh_rate=(int)70.1; + if (d_vtotal_est>400 && d_vtotal_est<500) + { + d_Hvisible=720; + d_Hsize=900; + d_Vvisible=400; + d_Vsize=449; + } + } + else if (fv_estimated>72.5 && fv_estimated<80) + { + d_refresh_rate=75; + if (d_vtotal_est<562) + { + //640x480 + d_Hvisible=640; + d_Hsize=840; + d_Vvisible=480; + d_Vsize=500; + } + else if (d_vtotal_est>=562 && d_vtotal_est<646) + { + //800x600 + d_Hvisible=800; + d_Hsize=1056; + d_Vvisible=600; + d_Vsize=625; + } + else if (d_vtotal_est>=646 && d_vtotal_est<733) + { + //832x624 + d_refresh_rate=(int)74.6; + d_Hvisible=832; + d_Hsize=1152; + d_Vvisible=624; + d_Vsize=667; + } + else if (d_vtotal_est>=733 && d_vtotal_est<850) + { + //1024x768 + d_refresh_rate=(int)75.1; + d_Hvisible=1024; + d_Hsize=1312; + d_Vvisible=768; + d_Vsize=800; + } + else if (d_vtotal_est>850 && d_vtotal_est<983) + { + //1152x864 + d_Hvisible=1152; + d_Hsize=1600; + d_Vvisible=864; + d_Vsize=900; + } + else if (d_vtotal_est>983 && d_vtotal_est<1250) + { + //1280x1024 + d_Hvisible=1280; + d_Hsize=1688; + d_Vvisible=1024; + d_Vsize=1066; + } + } + }; + + public: + infer_screen_resolution_impl(int sample_rate, int fft_size, float refresh_rate, bool automatic_mode); + ~infer_screen_resolution_impl(); + + // Where all the action really happens + void forecast (int noutput_items, gr_vector_int &ninput_items_required); + + void set_refresh_rate(float refresh_rate); + + int general_work(int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items); + + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_INFER_SCREEN_RESOLUTION_IMPL_H */ + diff --git a/lib/ncaso.txt b/lib/ncaso.txt new file mode 100644 index 0000000..ce26955 --- /dev/null +++ b/lib/ncaso.txt @@ -0,0 +1 @@ +909882 \ No newline at end of file diff --git a/lib/normalize_flow_impl.h b/lib/normalize_flow_impl.h index 2c9a071..f78bc5e 100644 --- a/lib/normalize_flow_impl.h +++ b/lib/normalize_flow_impl.h @@ -26,7 +26,7 @@ #ifndef INCLUDED_TEMPEST_NORMALIZE_FLOW_IMPL_H #define INCLUDED_TEMPEST_NORMALIZE_FLOW_IMPL_H -#include +#include #include namespace gr { diff --git a/lib/sampling_synchronization_impl.h b/lib/sampling_synchronization_impl.h index 03c3569..8b89abb 100644 --- a/lib/sampling_synchronization_impl.h +++ b/lib/sampling_synchronization_impl.h @@ -26,7 +26,7 @@ #ifndef INCLUDED_TEMPEST_SAMPLING_SYNCHRONIZATION_IMPL_H #define INCLUDED_TEMPEST_SAMPLING_SYNCHRONIZATION_IMPL_H -#include +#include #include #include diff --git a/lib/ssamp_correction_impl.cc b/lib/ssamp_correction_impl.cc new file mode 100644 index 0000000..4fc92bd --- /dev/null +++ b/lib/ssamp_correction_impl.cc @@ -0,0 +1,274 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +#include +#include +#include "ssamp_correction_impl.h" + +namespace gr { + namespace tempest { + + ssamp_correction::sptr + ssamp_correction::make(int Htotal, int Vtotal, int correct_sampling, float max_deviation) + { + return gnuradio::get_initial_sptr + (new ssamp_correction_impl(Htotal, Vtotal, correct_sampling, max_deviation)); + } + + + /* + * The private constructor + */ + ssamp_correction_impl::ssamp_correction_impl(int Htotal, int Vtotal, int correct_sampling, float max_deviation) + : gr::block("ssamp_correction", + gr::io_signature::make(1, 1, sizeof(gr_complex)), + gr::io_signature::make(1, 1, sizeof(gr_complex))), + d_inter(gr::filter::mmse_fir_interpolator_cc()), + d_gen(std::random_device{}()) + { + set_relative_rate(1); + d_correct_sampling = correct_sampling; + d_max_deviation = max_deviation; + d_Htotal = Htotal; + d_Vtotal = Vtotal; + d_max_deviation_px = (int)std::ceil(d_Htotal*d_max_deviation); + + set_history(d_Vtotal*(d_Htotal+d_max_deviation_px)+1); + + d_peak_line_index = 0; + d_samp_inc_rem = 0; + d_stop_fine_sampling_synch = 0; + d_new_interpolation_ratio_rem = 0; + + d_current_line_corr = new gr_complex[2*d_max_deviation_px + 1]; + d_historic_line_corr = new gr_complex[2*d_max_deviation_px + 1]; + d_abs_historic_line_corr = new float[2*d_max_deviation_px + 1]; + + /** Note: d_current_frame_corr[i] and derivatives will keep the correlation between pixels + px[t] and px[t+Htotal*Vtotal+i]. Since a single pixel de-alignment with the next line will + mean d_Vtotal pixels de-alignments with the next frame, these arrays are much bigger. + However, instead of always calculating the whole of them, I'll only calculate around those + indicated by the max in the d_abs_historic_line_corr. + */ + d_current_frame_corr = new gr_complex[2*(d_max_deviation_px+1)*d_Vtotal + 1]; + d_historic_frame_corr = new gr_complex[2*(d_max_deviation_px+1)*d_Vtotal + 1]; + d_abs_historic_frame_corr = new float[2*(d_max_deviation_px+1)*d_Vtotal + 1]; + + d_alpha_samp_inc = 1e-1; + d_samp_phase = 0; + d_alpha_corr = 1e-2; + d_next_update = 0; + + for (int i = 0; i<2*d_max_deviation_px+1; i++){ + d_historic_line_corr[i] = 0; + d_abs_historic_line_corr[i] = 0; + } + for (int i = 0; i<2*d_max_deviation_px*d_Vtotal+1; i++){ + d_historic_frame_corr[i] = 0; + d_abs_historic_frame_corr[i] = 0; + } + + printf("[TEMPEST] Construction of ssamp_correction_impl with Htotal=%i and Vtotal=%i.\n", Htotal, Vtotal); + + //VOLK alignment as recommended by GNU Radio's Manual. It has a similar effect + //than set_output_multiple(), thus we will generally get multiples of this value + //as noutput_items. + const int alignment_multiple = volk_get_alignment() / sizeof(gr_complex); + set_alignment(std::max(1, alignment_multiple)); + + // PMT ports + message_port_register_in(pmt::mp("ratio")); + message_port_register_in(pmt::mp("en")); + + // PMT handlers + // : Port Lambda function + set_msg_handler( pmt::mp("ratio"), [this](const pmt::pmt_t& msg) {ssamp_correction_impl::set_ratio_msg(msg); }); + set_msg_handler( pmt::mp("en"), [this](const pmt::pmt_t& msg) {ssamp_correction_impl::set_ena_msg(msg); }); + } + + + void + ssamp_correction_impl::set_ena_msg(pmt::pmt_t msg) + { + if (pmt::is_bool(msg)) { + bool en = pmt::to_bool(msg); + gr::thread::scoped_lock l(d_mutex); + d_stop_fine_sampling_synch = !en; + printf("ssamp_correction_impl Received Sampling Stop.\n"); + } else { + GR_LOG_WARN(d_logger, + "ssamp_correction_impl Received : Non-PMT type received, expecting Boolean PMT\n"); + } + } + + void + ssamp_correction_impl::set_ratio_msg(pmt::pmt_t msg) + { + if(pmt::is_pair(msg)) { + // saca el primero de la pareja + pmt::pmt_t key = pmt::car(msg); + // saca el segundo + pmt::pmt_t val = pmt::cdr(msg); + if(pmt::eq(key, pmt::string_to_symbol("ratio"))) { + if(pmt::is_number(val)) { + d_new_interpolation_ratio_rem = (double)pmt::to_double(val); + printf("ssamp_correction_impl Received : interpolation ratio = %f \n", d_new_interpolation_ratio_rem); + } + } + } + } + + /* + * Our virtual destructor. + */ + ssamp_correction_impl::~ssamp_correction_impl() + { + delete [] d_current_line_corr; + delete [] d_historic_line_corr; + delete [] d_abs_historic_line_corr; + delete [] d_current_frame_corr; + delete [] d_historic_frame_corr; + delete [] d_abs_historic_frame_corr; + } + + void + ssamp_correction_impl::forecast (int noutput_items, gr_vector_int &ninput_items_required) + { + int ninputs = ninput_items_required.size (); + // make sure we receive at least Hsize+max_deviation+taps_to_interpolate + for (int i = 0; i < ninputs; i++) + { + ninput_items_required[i] = (int)ceil((noutput_items + 1) * (2+d_samp_inc_rem)) + d_inter.ntaps() ; + } + + } + + void + ssamp_correction_impl::set_Htotal_Vtotal(int Htotal, int Vtotal){ + // If the resolution's changed, I reset the whole block + /** + * @fcarraustewart + * FIXME: This callback double taps onChange + * of any of these two variables, Htotal Vtotal, + * This happens on all our testXXX.grc files. + * Solution .grc file should not have a link + * between these two variables? + */ + d_Htotal = Htotal; + d_Vtotal = Vtotal; + + d_max_deviation_px = (int)std::ceil(d_Htotal*d_max_deviation); + printf("ssamp_correction_impl d_max_deviation_px: %i\n", d_max_deviation_px); + set_history(d_Vtotal*(d_Htotal+d_max_deviation_px)+1); + + d_peak_line_index = 0; + d_samp_inc_rem = 0; + d_stop_fine_sampling_synch = 0; + d_new_interpolation_ratio_rem = 0; + + /** + * < Calling delete for each of the following pointers + * and assigning them nullptr right here. Before running the new operator. + * + * */ + delete [] d_current_line_corr; + delete [] d_historic_line_corr; + delete [] d_abs_historic_line_corr; + delete [] d_current_frame_corr; + delete [] d_historic_frame_corr; + delete [] d_abs_historic_frame_corr; + + d_current_line_corr = new gr_complex[2*d_max_deviation_px + 1]; + d_historic_line_corr = new gr_complex[2*d_max_deviation_px + 1]; + d_abs_historic_line_corr = new float[2*d_max_deviation_px + 1]; + d_current_frame_corr = new gr_complex[2*(d_max_deviation_px+1)*d_Vtotal + 1]; + d_historic_frame_corr = new gr_complex[2*(d_max_deviation_px+1)*d_Vtotal + 1]; + d_abs_historic_frame_corr = new float[2*(d_max_deviation_px+1)*d_Vtotal + 1]; + //I'll estimate the new sampling synchronization asap + d_next_update = 0; + + for (int i = 0; i<2*d_max_deviation_px+1; i++){ + d_historic_line_corr[i] = 0; + d_abs_historic_line_corr[i] = 0; + } + for (int i = 0; i<2*d_max_deviation_px*d_Vtotal+1; i++){ + d_historic_frame_corr[i] = 0; + d_abs_historic_frame_corr[i] = 0; + } + + printf("[TEMPEST] Construction of ssamp_correction_impl with Htotal=%i and Vtotal=%i.\n", Htotal, Vtotal); + + } + + int + ssamp_correction_impl::interpolate_input(const gr_complex * in, + gr_complex * out, + int size) + { + int ii = 0; // input index + int oo = 0; // output index + + double s, f; + int incr; + while(oo < size) { + out[oo++] = d_inter.interpolate(&in[ii], d_samp_phase); + + s = d_samp_phase + d_samp_inc_rem + 1; + f = floor(s); + incr = (int)f; + d_samp_phase = s - f; + ii += incr; + } + + // return how many inputs we required to generate d_cp_length+d_fft_length outputs + return ii; + } + + int + ssamp_correction_impl::general_work (int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) + { + const gr_complex *in = (const gr_complex *) input_items[0]; + gr_complex *out = (gr_complex *) output_items[0]; + gr::thread::scoped_lock l(d_mutex); + int required_for_interpolation = noutput_items; + + d_samp_inc_rem = d_new_interpolation_ratio_rem; + required_for_interpolation = interpolate_input(&in[0], &out[0], noutput_items); + consume_each (required_for_interpolation); + return noutput_items; + } + + } /* namespace tempest */ +} /* namespace gr */ + diff --git a/lib/ssamp_correction_impl.h b/lib/ssamp_correction_impl.h new file mode 100644 index 0000000..3b9f683 --- /dev/null +++ b/lib/ssamp_correction_impl.h @@ -0,0 +1,124 @@ +/* -*- c++ -*- */ +/* + * Copyright 2020 + * Federico "Larroca" La Rocca + * + * Instituto de Ingenieria Electrica, Facultad de Ingenieria, + * Universidad de la Republica, Uruguay. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + * + */ + +#ifndef INCLUDED_TEMPEST_SSAMP_CORRECTION_IMPL_H +#define INCLUDED_TEMPEST_SSAMP_CORRECTION_IMPL_H + +#include +#include +#include + +namespace gr { + namespace tempest { + + class ssamp_correction_impl : public ssamp_correction + { + private: + int d_Htotal; + int d_Vtotal; + int d_correct_sampling; + float d_max_deviation; + //Counters + int d_frame_height_counter; + int d_frames_counter; + + //Fixed parameter + int d_discarded_amount_per_frame; + + + + // to accelerate the process, I'll only update the interpolation + // once every a random number of iterations with probability d_proba_of_updating + std::geometric_distribution d_dist; + std::minstd_rand d_gen; + + int d_next_update; + int d_required_for_interpolation; + + double d_samp_inc_rem; + double d_new_interpolation_ratio_rem; + double d_samp_phase; + + float d_alpha_samp_inc; + int d_max_deviation_px; + + // correlation with the last line + + gr_complex * d_current_line_corr; + gr_complex * d_historic_line_corr; + float * d_abs_historic_line_corr; + + // correlation with the last frame + + gr_complex * d_current_frame_corr; + gr_complex * d_historic_frame_corr; + float * d_abs_historic_frame_corr; + + bool d_stop_fine_sampling_synch; + // where is the line correlation peak + int d_peak_line_index; + + float d_alpha_corr; + + // the interpolating filter + gr::filter::mmse_fir_interpolator_cc d_inter; + + int interpolate_input(const gr_complex * in, gr_complex * out, int size); + + void update_interpolation_ratio(const gr_complex * in, int in_size); + + void estimate_peak_line_index(const gr_complex * in, int in_size); + + void set_iHsize_msg(pmt::pmt_t msg); + + void set_Vsize_msg(pmt::pmt_t msg); + + + void set_ena_msg(pmt::pmt_t msg); + gr::thread::mutex d_mutex; + void set_ratio_msg(pmt::pmt_t msg); + + public: + ssamp_correction_impl(int Htotal, int Vtotal, int correct_sampling, float max_deviation); + ~ssamp_correction_impl(); + + + void set_Htotal_Vtotal(int Htotal, int Vtotal) override; // Asynch Callback see: tempest_ssamp_correction.block.yml + + // Where all the action really happens + void forecast (int noutput_items, gr_vector_int &ninput_items_required); + + int general_work(int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items); + + }; + + } // namespace tempest +} // namespace gr + +#endif /* INCLUDED_TEMPEST_SSAMP_CORRECTION_IMPL_H */ + diff --git a/lib/sync_detector_impl.cc b/lib/sync_detector_impl.cc new file mode 100644 index 0000000..dddf086 --- /dev/null +++ b/lib/sync_detector_impl.cc @@ -0,0 +1,437 @@ +/* -*- c++ -*- */ +/* + * Copyright 2021 gr-tempest + * Pablo Bertrand + * Felipe Carrau + * Victoria Severi + * + * Instituto de Ingeniería Eléctrica, Facultad de Ingeniería, + * Universidad de la República, Uruguay. + * + * This software is based on Martin Marinov's TempestSDR. + * In particular, gaussianblur() function is entirely his, and + * find_best_beta and find_shift are implementations of + * findbestfit and findthesweetspot, respectively. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include "sync_detector_impl.h" +#include +#include +#include + +namespace gr { + namespace tempest { + + sync_detector::sptr + sync_detector::make(int hscreen, int vscreen, int hblanking, int vblanking) + { + return gnuradio::get_initial_sptr + (new sync_detector_impl(hscreen, vscreen, hblanking, vblanking)); + } + + /* + * The private constructor + */ + sync_detector_impl::sync_detector_impl(int hscreen, int vscreen, int hblanking, int vblanking) + : gr::block("sync_detector", + gr::io_signature::make(1, 1, sizeof(gr_complex)), + gr::io_signature::make(1, 1, sizeof(gr_complex))) + { + //Fixed parameters + d_LOWPASS_COEFF_V = 0.2; + d_LOWPASS_COEFF_H = 0.1; + d_GAUSSIAN_ALPHA = 1.0; + + //Input data + d_hdisplay = hscreen; + d_vdisplay = vscreen; + d_hblanking = hblanking; + d_vblanking = vblanking; + d_Htotal = d_hdisplay + d_hblanking; + d_Vtotal = d_vdisplay + d_vblanking; + + //Blanking variables + d_blanking_size_h = d_hblanking; + d_blanking_size_v = d_vblanking; + d_blanking_index_h = 0; + d_blanking_index_v = 0; + d_working_index_h = 0; + + //Flags + d_frame_average_complete = 0; + d_frame_wait_for_blanking = 0; + d_frame_output = 0; + d_start_sync_detect = 0; + + //Counters + d_frame_height_counter = 0; + d_blanking_wait_counter = 0; + d_output_counter = 0; + + //Arrays + d_data_h = new float[d_Htotal]; + if (d_data_h == NULL) + std::cout << "cannot allocate memory: d_data_h" << std::endl; + d_avg_h_line = new float[d_Htotal]; + if (d_avg_h_line == NULL) + std::cout << "cannot allocate memory: d_data_h" << std::endl; + d_avg_v_line = new float[d_Vtotal]; + if (d_avg_v_line == NULL) + std::cout << "cannot allocate memory: d_data_h" << std::endl; + + // PMT ports + message_port_register_in(pmt::mp("en")); + + // PMT handlers + set_msg_handler(pmt::mp("en"), [this](const pmt::pmt_t& msg) {sync_detector_impl::set_ena_msg(msg); }); + + //Complete lines per call to the block will be generated + set_output_multiple(2*d_Htotal); + + // const int alignment_multiple = volk_get_alignment() / sizeof(gr_complex); + // set_alignment(std::max(1, alignment_multiple)); + } + + /* + * Our virtual destructor. + */ + sync_detector_impl::~sync_detector_impl() + { + delete [] d_data_h; + delete [] d_avg_h_line; + delete [] d_avg_v_line; + } + + + void sync_detector_impl::find_best_beta (const float *data, const int total_line_size, const double total_sum, const int blanking_size, double *beta, int *beta_index) + { + //////////////////////////////////////////////////////////////////////////////// + // Function that takes a full line (either horizontal or vertical) and a fixed// + // blanking size to calculate the medium energy difference between blanking // + // and screen (beta) for each possible blanking position. Returns the position// + // that granted the best beta and the value of beta itself. // + //////////////////////////////////////////////////////////////////////////////// + + const double screen_size_double = total_line_size - blanking_size; + const double blanking_size_double = blanking_size; + //Doubles will be used for accuracy, as well as for beta + + int i; + double curr_sum = 0.0; + for (i = 0; i < blanking_size; i++) curr_sum += data[i]; + + //Initial calculation of beta (blanking located on i=0) + const double beta_0 = (total_sum - curr_sum)/screen_size_double - curr_sum/blanking_size_double; + *beta = pow(beta_0, 2); + *beta_index = 0; + + const int screen_size = total_line_size - blanking_size; + + //Then the blanking is moved along the line by removing the first element and adding the next + //In each case, beta and it's position are only saved if the beta was improved + for (i = 0; i < (total_line_size - 1); i++) { + + const double data_to_remove = data[i]; + + const int to_remove_index = (i < screen_size) ? (i+blanking_size) : (i-screen_size); + const double data_to_add = data[to_remove_index]; + + curr_sum = curr_sum - data_to_remove + data_to_add; + const double beta_i = pow(((total_sum - curr_sum)/screen_size_double - curr_sum/blanking_size_double),2); + + if (beta_i > *beta) { + *beta = beta_i; + *beta_index = i; + } + } + } + + + float sync_detector_impl::calculate_gauss_coeff(float N, float i) + { + return(expf(-2.0f*d_GAUSSIAN_ALPHA*d_GAUSSIAN_ALPHA*i*i/(N*N))); + } + + + void sync_detector_impl::gaussianblur(float * data, int size) + { + //////////////////////////////////////////////////////////////////////////////// + // Marinov's gaussian blur application for a fixed-size array. // + //////////////////////////////////////////////////////////////////////////////// + + float norm = 0.0f, c_2 = 0.0f, c_1 = 0.0f, c0 = 0.0f, c1 = 0.0f, c2 = 0.0f; + if (norm == 0.0f) { + norm = calculate_gauss_coeff(5,-2) + calculate_gauss_coeff(5, -1) + calculate_gauss_coeff(5, 0) + calculate_gauss_coeff(5, 1) + calculate_gauss_coeff(5, 2); + c_2 = calculate_gauss_coeff(5, -2) / norm; + c_1 = calculate_gauss_coeff(5, -1) / norm; + c0 = calculate_gauss_coeff(5, 0) / norm; + c1 = calculate_gauss_coeff(5, 1) / norm; + c2 = calculate_gauss_coeff(5, 2) / norm; + } + + float p_2, p_1, p0, p1, p2, data_2, data_3, data_4; + if (size < 5) { + p_2 = data[0]; + p_1 = data[1 % size]; + p0 = data[2 % size]; + p1 = data[3 % size]; + p2 = data[4 % size]; + } else { + p_2 = data[0]; + p_1 = data[1]; + p0 = data[2]; + p1 = data[3]; + p2 = data[4]; + } + + data_2 = p0; + data_3 = p1; + data_4 = p2; + + int i; + const int sizem2 = size - 2; + const int sizem5 = size - 5; + for (i = 0; i < size; i++) { + + const int idtoupdate = (i < sizem2) ? (i + 2) : (i - sizem2); + const int nexti = (i < sizem5) ? (i + 5) : (i - sizem5); + + data[idtoupdate] = p_2 * c_2 + p_1 * c_1 + p0 * c0 + p1 * c1 + p2 * c2; + p_2 = p_1; + p_1 = p0; + p0 = p1; + p1 = p2; + + if (nexti < 2 || nexti >= 5) + p2 = data[nexti]; + else { + switch (nexti) { + case 2: + p2 = data_2; + break; + case 3: + p2 = data_3; + break; + case 4: + p2 = data_4; + break; + } + } + } + } + + void sync_detector_impl::find_shift (int *blanking_index, int *blanking_size, float *data, const int total_line_size, int min_blanking_size, double lowpasscoeff) + { + ////////////////////////////////////////////////////////////////////////////// + // Function that takes the line and runs find_best_beta for some possible // + // blanking sizes. Then takes the best location (and size) returned and // + // defines the new position for shifting using both the new calculation and // + // the previous information to prevent sudden big changes. // + ////////////////////////////////////////////////////////////////////////////// + + gaussianblur(data, total_line_size); + + double total_sum = 0.0; + for (int i = 0; i < total_line_size; i++) total_sum += data[i]; + int beta_index=0; + double beta; + int beta_index_temp; + double beta_temp; + + //Blanking sizes to test are established + int max_blanking_size = total_line_size >> 1; + if (min_blanking_size < 1) min_blanking_size = 1; + if ((*blanking_size) < min_blanking_size) (*blanking_size) = min_blanking_size; + else if ((*blanking_size) > max_blanking_size) (*blanking_size) = max_blanking_size; + int blanking_size_attempt[4] = {((*blanking_size)-4), ((*blanking_size)+4), ((*blanking_size)>>1), ((*blanking_size)<<1)}; + + //First search for beta using the initial blanking size + find_best_beta(data, total_line_size, total_sum, (*blanking_size), &beta, &beta_index); + + //Then test the rest of the sizes and save the best one found + for (int i = 0; i < 4; i++) { + if (blanking_size_attempt[i]>min_blanking_size && blanking_size_attempt[i]beta) { + beta = beta_temp; + beta_index = beta_index_temp; + (*blanking_size) = blanking_size_attempt[i]; + } + } + } + + const int half_line_size = total_line_size / 2; + + //Here is defined what would be the shift location (position found plus half of the blanking) + int raw_index = (beta_index + (*blanking_size) /2) % total_line_size; + + //Checking if the new shift differs excessively from the previous one + const int raw_diff = raw_index - *blanking_index; + + if (raw_diff > half_line_size) + *blanking_index += total_line_size; + + else if (raw_diff < -half_line_size) + raw_index += total_line_size; + + //The shift is updated considering both new and previous data (with the corresponding weights) + *blanking_index = ((int) round(raw_index * lowpasscoeff + (1.0 - lowpasscoeff) * (*blanking_index))) % ((int) total_line_size); + } + + void + sync_detector_impl::set_ena_msg(pmt::pmt_t msg) + { + gr::thread::scoped_lock l(d_mutex); + if (pmt::is_bool(msg)) { + bool en = pmt::to_bool(msg); + d_start_sync_detect = !en; + printf("Sync Detecting Start.\n"); + } else { + GR_LOG_WARN(d_logger, + "Sync Detector: Non-PMT type received, expecting Boolean PMT\n"); + } + } + + void + sync_detector_impl::forecast (int noutput_items, gr_vector_int &ninput_items_required) + { + int ninputs = ninput_items_required.size (); + for (int i = 0; i < ninputs; i++){ + ninput_items_required[i] = (2*d_Htotal + 1)*(noutput_items/(2*d_Htotal) +1); + } + } + + + int + sync_detector_impl::general_work (int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items) + { + const gr_complex *in = (const gr_complex *) input_items[0]; + gr_complex *out = (gr_complex *) output_items[0]; + + int delta_h, consumed = 0, out_amount = 0; + + gr::thread::scoped_lock l(d_mutex); + + if (d_start_sync_detect==0){ + memcpy(out,in,noutput_items*sizeof(gr_complex)); + out_amount=noutput_items; + consumed=noutput_items; + + } else { + + for (int line = 0; line < noutput_items/d_Htotal; line++) { + + volk_32fc_magnitude_32f(&d_data_h[0], &in[line*d_Htotal], d_Htotal); + + //From an horizontal line, we obtain the partial value of all elements of the + //horizontal average and the full value of a single element of the vertical average + for (int i=0 ; (i < d_Htotal) ; i++) + { + d_avg_h_line[i] = d_avg_h_line[i] + (d_data_h[i]/(d_Vtotal)); + d_avg_v_line[d_frame_height_counter] += (d_data_h[i]/(d_Htotal)); + } + + d_frame_height_counter ++; + + //When a complete frame is evaluated we have full averages and are ready to find the shift + if(d_frame_height_counter % d_Vtotal == 0) + d_frame_average_complete = 1; + + if(d_frame_average_complete) + { + //Finding the position that maximizes beta both horizontally and vertically for the frame + find_shift (&d_blanking_index_h, &d_blanking_size_h, d_avg_h_line, d_Htotal, d_Htotal*0.05f, d_LOWPASS_COEFF_H); + find_shift (&d_blanking_index_v, &d_blanking_size_v, d_avg_v_line, d_Vtotal, d_Vtotal*0.0005f, d_LOWPASS_COEFF_V); + + //As the information is used, we set up the variables to receive the next frame + d_frame_average_complete = 0; + d_frame_height_counter = 0; + d_blanking_wait_counter = 0; + + for (int i=0; (i + * Felipe Carrau + * Victoria Severi + * + * Instituto de Ingeniería Eléctrica, Facultad de Ingeniería, + * Universidad de la República, Uruguay. + * + * This software is based on Martin Marinov's TempestSDR. + * In particular, gaussianblur() function is entirely his, and + * find_best_beta and find_shift are implementations of + * findbestfit and findthesweetspot, respectively. + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3, or (at your option) + * any later version. + * + * This software is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this software; see the file COPYING. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, + * Boston, MA 02110-1301, USA. + */ + +#ifndef INCLUDED_SYNC_DETECTOR_IMPL_H +#define INCLUDED_SYNC_DETECTOR_IMPL_H + +#include + +namespace gr { + namespace tempest { + + class sync_detector_impl : public sync_detector + { + private: + //Input data + int d_hdisplay; + int d_vdisplay; + int d_hblanking; + int d_vblanking; + int d_Htotal; + int d_Vtotal; + + //Blanking variables + int d_blanking_size_h; + int d_blanking_size_v; + int d_blanking_index_h; + int d_blanking_index_v; + int d_working_index_h; + + //Flags + int d_frame_average_complete; + int d_frame_wait_for_blanking; + int d_frame_output; + + + //Counters + int d_frame_height_counter; + int d_blanking_wait_counter; + int d_output_counter; + + // Control flag, and its mutex + gr::thread::mutex d_mutex; + bool d_start_sync_detect; + + //Arrays + float * d_data_h; + float * d_avg_h_line; + float * d_avg_v_line; + + //Functions + void find_best_beta (const float *data, const int total_line_size, const double total_sum, const int blanking_size, double *beta, int *beta_index); + void find_shift (int *blanking_index, int *blanking_size, float *data, const int total_line_size, int min_blanking_size, double lowpasscoeff); + void gaussianblur(float * data, int size); + float calculate_gauss_coeff(float N, float i); + void set_ena_msg(pmt::pmt_t msg); + + //Fixed parameters + float d_LOWPASS_COEFF_V; + float d_LOWPASS_COEFF_H; + float d_GAUSSIAN_ALPHA; + + public: + sync_detector_impl(int hscreen, int vscreen, int hblanking, int vblanking); + ~sync_detector_impl(); + + // Where all the action really happens + void forecast (int noutput_items, gr_vector_int &ninput_items_required); + + int general_work(int noutput_items, + gr_vector_int &ninput_items, + gr_vector_const_void_star &input_items, + gr_vector_void_star &output_items); + + }; + + } // namespace sync_detector +} // namespace gr + +#endif /* INCLUDED_SYNC_DETECTOR_IMPL_H */ diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt deleted file mode 100644 index 25981f6..0000000 --- a/python/CMakeLists.txt +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 2011 Free Software Foundation, Inc. -# -# This file was generated by gr_modtool, a tool from the GNU Radio framework -# This file is a part of gr-tempest -# -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. - -######################################################################## -# Include python install macros -######################################################################## -include(GrPython) -if(NOT PYTHONINTERP_FOUND) - return() -endif() - -######################################################################## -# Install python sources -######################################################################## -GR_PYTHON_INSTALL( - FILES - __init__.py - image_source.py DESTINATION ${GR_PYTHON_DIR}/tempest -) - -######################################################################## -# Handle the unit tests -######################################################################## -include(GrTest) - -set(GR_TEST_TARGET_DEPS gnuradio-tempest) -set(GR_TEST_PYTHON_DIRS ${CMAKE_BINARY_DIR}/swig) -GR_ADD_TEST(qa_sampling_synchronization ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_sampling_synchronization.py) -GR_ADD_TEST(qa_framing ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_framing.py) -GR_ADD_TEST(qa_Hsync ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_Hsync.py) -GR_ADD_TEST(qa_image_source ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_image_source.py) -GR_ADD_TEST(qa_normalize_flow ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_normalize_flow.py) -GR_ADD_TEST(qa_fine_sampling_synchronization ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/qa_fine_sampling_synchronization.py) diff --git a/python/__init__.py b/python/__init__.py deleted file mode 100644 index 96742f6..0000000 --- a/python/__init__.py +++ /dev/null @@ -1,36 +0,0 @@ -# -# Copyright 2008,2009 Free Software Foundation, Inc. -# -# This application is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# This application is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -# - -# The presence of this file turns this directory into a Python package - -''' -This is the GNU Radio TEMPEST module. Place your Python package -description here (python/__init__.py). -''' -from __future__ import unicode_literals - -# import swig generated symbols into the tempest namespace -try: - # this might fail if the module is python-only - from .tempest_swig import * -except ImportError: - pass - -# import any pure python here -from .image_source import image_source -# diff --git a/python/tempest/.gitignore b/python/tempest/.gitignore new file mode 100644 index 0000000..85c92e8 --- /dev/null +++ b/python/tempest/.gitignore @@ -0,0 +1,5 @@ +*~ +*.pyc +*.pyo +build*/ +examples/grc/*.py diff --git a/python/tempest/CMakeLists.txt b/python/tempest/CMakeLists.txt new file mode 100644 index 0000000..4eebb3e --- /dev/null +++ b/python/tempest/CMakeLists.txt @@ -0,0 +1,45 @@ +# Copyright 2011 Free Software Foundation, Inc. +# +# This file was generated by gr_modtool, a tool from the GNU Radio framework +# This file is a part of gr-tempest +# +# SPDX-License-Identifier: GPL-3.0-or-later +# + +######################################################################## +# Include python install macros +######################################################################## +include(GrPython) +if(NOT PYTHONINTERP_FOUND) + return() +endif() + +add_subdirectory(bindings) + +######################################################################## +# Install python sources +######################################################################## +GR_PYTHON_INSTALL( + FILES + __init__.py + image_source.py + message_to_var.py + tempest_msgbtn.py + DESTINATION ${GR_PYTHON_DIR}/gnuradio/tempest +) + +######################################################################## +# Handle the unit tests +######################################################################## +include(GrTest) + +set(GR_TEST_TARGET_DEPS gnuradio-tempest) + +# Create a package directory that tests can import. It includes everything +# from `python/`. +add_custom_target( + copy_module_for_tests ALL + COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_CURRENT_SOURCE_DIR} + ${PROJECT_BINARY_DIR}/test_modules/gnuradio/tempest/ +) + diff --git a/python/tempest/__init__.py b/python/tempest/__init__.py new file mode 100644 index 0000000..227bd86 --- /dev/null +++ b/python/tempest/__init__.py @@ -0,0 +1,26 @@ +# +# Copyright 2008,2009 Free Software Foundation, Inc. +# +# SPDX-License-Identifier: GPL-3.0-or-later +# + +# The presence of this file turns this directory into a Python package + +''' +This is the GNU Radio TEMPEST module. Place your Python package +description here (python/__init__.py). +''' +import os + +# import pybind11 generated symbols into the tempest namespace +try: + # this might fail if the module is python-only + from .tempest_python import * +except ModuleNotFoundError: + pass + +# import any pure python here +# +from .image_source import image_source +from .message_to_var import message_to_var +from .tempest_msgbtn import tempest_msgbtn diff --git a/python/tempest/bindings/CMakeLists.txt b/python/tempest/bindings/CMakeLists.txt new file mode 100644 index 0000000..2fdd897 --- /dev/null +++ b/python/tempest/bindings/CMakeLists.txt @@ -0,0 +1,55 @@ +# Copyright 2020 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# SPDX-License-Identifier: GPL-3.0-or-later +# + +######################################################################## +# Check if there is C++ code at all +######################################################################## +if(NOT tempest_sources) + MESSAGE(STATUS "No C++ sources... skipping python bindings") + return() +endif(NOT tempest_sources) + +######################################################################## +# Check for pygccxml +######################################################################## +GR_PYTHON_CHECK_MODULE_RAW( + "pygccxml" + "import pygccxml" + PYGCCXML_FOUND + ) + +include(GrPybind) + +######################################################################## +# Python Bindings +######################################################################## + +list(APPEND tempest_python_files + fft_peak_fine_sampling_sync_python.cc + fine_sampling_synchronization_python.cc + frame_drop_python.cc + framing_python.cc + Hsync_python.cc + infer_screen_resolution_python.cc + normalize_flow_python.cc + sampling_synchronization_python.cc + ssamp_correction_python.cc + sync_detector_python.cc + python_bindings.cc) + +GR_PYBIND_MAKE_OOT(tempest + ../../.. + gr::tempest + "${tempest_python_files}") + +# copy bindings extension for use in QA test module +add_custom_command(TARGET tempest_python POST_BUILD + COMMAND ${CMAKE_COMMAND} -E copy $ + ${PROJECT_BINARY_DIR}/test_modules/gnuradio/tempest/ +) + +install(TARGETS tempest_python DESTINATION ${GR_PYTHON_DIR}/gnuradio/tempest COMPONENT pythonapi) diff --git a/python/tempest/bindings/Hsync_python.cc b/python/tempest/bindings/Hsync_python.cc new file mode 100644 index 0000000..b277424 --- /dev/null +++ b/python/tempest/bindings/Hsync_python.cc @@ -0,0 +1,49 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(Hsync.h) */ +/* BINDTOOL_HEADER_FILE_HASH(4daca6009b12dabf167468cf6a943518) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_Hsync(py::module& m) +{ + + using Hsync = ::gr::tempest::Hsync; + + + py::class_>( + m, "Hsync", D(Hsync)) + + .def(py::init(&Hsync::make), py::arg("Htotal"), py::arg("delay"), D(Hsync, make)) + + + .def("set_Htotal_and_delay", + &Hsync::set_Htotal_and_delay, + py::arg("Htotal"), + py::arg("delay"), + D(Hsync, set_Htotal_and_delay)) + + ; +} diff --git a/python/tempest/bindings/README.md b/python/tempest/bindings/README.md new file mode 100644 index 0000000..e69de29 diff --git a/python/tempest/bindings/bind_oot_file.py b/python/tempest/bindings/bind_oot_file.py new file mode 100644 index 0000000..543c699 --- /dev/null +++ b/python/tempest/bindings/bind_oot_file.py @@ -0,0 +1,54 @@ +import warnings +import argparse +from gnuradio.bindtool import BindingGenerator +import sys +import tempfile + +parser = argparse.ArgumentParser(description='Bind a GR Out of Tree Block') +parser.add_argument('--module', type=str, + help='Name of gr module containing file to bind (e.g. fft digital analog)') + +parser.add_argument('--output_dir', default=tempfile.gettempdir(), + help='Output directory of generated bindings') +parser.add_argument('--prefix', help='Prefix of Installed GNU Radio') + +parser.add_argument( + '--filename', help="File to be parsed") + +parser.add_argument( + '--defines', help='Set additional defines for precompiler', default=(), nargs='*') +parser.add_argument( + '--include', help='Additional Include Dirs, separated', default=(), nargs='*') + +parser.add_argument( + '--status', help='Location of output file for general status (used during cmake)', default=None +) +parser.add_argument( + '--flag_automatic', default='0' +) +parser.add_argument( + '--flag_pygccxml', default='0' +) + +args = parser.parse_args() + +prefix = args.prefix +output_dir = args.output_dir +defines = tuple(','.join(args.defines).split(',')) +includes = ','.join(args.include) +name = args.module + +namespace = ['gr', name] +prefix_include_root = name + + +with warnings.catch_warnings(): + warnings.filterwarnings("ignore", category=DeprecationWarning) + + bg = BindingGenerator(prefix, namespace, + prefix_include_root, output_dir, define_symbols=defines, addl_includes=includes, + catch_exceptions=False, write_json_output=False, status_output=args.status, + flag_automatic=True if args.flag_automatic.lower() in [ + '1', 'true'] else False, + flag_pygccxml=True if args.flag_pygccxml.lower() in ['1', 'true'] else False) + bg.gen_file_binding(args.filename) diff --git a/python/tempest/bindings/docstrings/Hsync_pydoc_template.h b/python/tempest/bindings/docstrings/Hsync_pydoc_template.h new file mode 100644 index 0000000..7e1be41 --- /dev/null +++ b/python/tempest/bindings/docstrings/Hsync_pydoc_template.h @@ -0,0 +1,30 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_Hsync = R"doc()doc"; + + +static const char* __doc_gr_tempest_Hsync_Hsync_0 = R"doc()doc"; + + +static const char* __doc_gr_tempest_Hsync_Hsync_1 = R"doc()doc"; + + +static const char* __doc_gr_tempest_Hsync_make = R"doc()doc"; + + +static const char* __doc_gr_tempest_Hsync_set_Htotal_and_delay = R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/README.md b/python/tempest/bindings/docstrings/README.md new file mode 100644 index 0000000..a506c22 --- /dev/null +++ b/python/tempest/bindings/docstrings/README.md @@ -0,0 +1 @@ +This directory stores templates for docstrings that are scraped from the include header files for each block diff --git a/python/tempest/bindings/docstrings/fft_peak_fine_sampling_sync_pydoc_template.h b/python/tempest/bindings/docstrings/fft_peak_fine_sampling_sync_pydoc_template.h new file mode 100644 index 0000000..82f357a --- /dev/null +++ b/python/tempest/bindings/docstrings/fft_peak_fine_sampling_sync_pydoc_template.h @@ -0,0 +1,26 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_fft_peak_fine_sampling_sync = R"doc()doc"; + + +static const char* + __doc_gr_tempest_fft_peak_fine_sampling_sync_fft_peak_fine_sampling_sync = + R"doc()doc"; + + +static const char* __doc_gr_tempest_fft_peak_fine_sampling_sync_make = R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/fine_sampling_synchronization_pydoc_template.h b/python/tempest/bindings/docstrings/fine_sampling_synchronization_pydoc_template.h new file mode 100644 index 0000000..b8e4e22 --- /dev/null +++ b/python/tempest/bindings/docstrings/fine_sampling_synchronization_pydoc_template.h @@ -0,0 +1,35 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_fine_sampling_synchronization = R"doc()doc"; + + +static const char* + __doc_gr_tempest_fine_sampling_synchronization_fine_sampling_synchronization_0 = + R"doc()doc"; + + +static const char* + __doc_gr_tempest_fine_sampling_synchronization_fine_sampling_synchronization_1 = + R"doc()doc"; + + +static const char* __doc_gr_tempest_fine_sampling_synchronization_make = R"doc()doc"; + + +static const char* __doc_gr_tempest_fine_sampling_synchronization_set_Htotal_Vtotal = + R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/frame_drop_pydoc_template.h b/python/tempest/bindings/docstrings/frame_drop_pydoc_template.h new file mode 100644 index 0000000..abe52ca --- /dev/null +++ b/python/tempest/bindings/docstrings/frame_drop_pydoc_template.h @@ -0,0 +1,24 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_frame_drop = R"doc()doc"; + + +static const char* __doc_gr_tempest_frame_drop_frame_drop = R"doc()doc"; + + +static const char* __doc_gr_tempest_frame_drop_make = R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/framing_pydoc_template.h b/python/tempest/bindings/docstrings/framing_pydoc_template.h new file mode 100644 index 0000000..f1b563f --- /dev/null +++ b/python/tempest/bindings/docstrings/framing_pydoc_template.h @@ -0,0 +1,30 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_framing = R"doc()doc"; + + +static const char* __doc_gr_tempest_framing_framing_0 = R"doc()doc"; + + +static const char* __doc_gr_tempest_framing_framing_1 = R"doc()doc"; + + +static const char* __doc_gr_tempest_framing_make = R"doc()doc"; + + +static const char* __doc_gr_tempest_framing_set_Htotal_and_Vtotal = R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/infer_screen_resolution_pydoc_template.h b/python/tempest/bindings/docstrings/infer_screen_resolution_pydoc_template.h new file mode 100644 index 0000000..4d84225 --- /dev/null +++ b/python/tempest/bindings/docstrings/infer_screen_resolution_pydoc_template.h @@ -0,0 +1,33 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_infer_screen_resolution = R"doc()doc"; + + +static const char* __doc_gr_tempest_infer_screen_resolution_infer_screen_resolution_0 = + R"doc()doc"; + + +static const char* __doc_gr_tempest_infer_screen_resolution_infer_screen_resolution_1 = + R"doc()doc"; + + +static const char* __doc_gr_tempest_infer_screen_resolution_set_refresh_rate = + R"doc()doc"; + + +static const char* __doc_gr_tempest_infer_screen_resolution_make = R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/normalize_flow_pydoc_template.h b/python/tempest/bindings/docstrings/normalize_flow_pydoc_template.h new file mode 100644 index 0000000..b3cd1be --- /dev/null +++ b/python/tempest/bindings/docstrings/normalize_flow_pydoc_template.h @@ -0,0 +1,30 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_normalize_flow = R"doc()doc"; + + +static const char* __doc_gr_tempest_normalize_flow_normalize_flow_0 = R"doc()doc"; + + +static const char* __doc_gr_tempest_normalize_flow_normalize_flow_1 = R"doc()doc"; + + +static const char* __doc_gr_tempest_normalize_flow_make = R"doc()doc"; + + +static const char* __doc_gr_tempest_normalize_flow_set_min_max = R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/sampling_synchronization_pydoc_template.h b/python/tempest/bindings/docstrings/sampling_synchronization_pydoc_template.h new file mode 100644 index 0000000..601d20c --- /dev/null +++ b/python/tempest/bindings/docstrings/sampling_synchronization_pydoc_template.h @@ -0,0 +1,36 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_sampling_synchronization = R"doc()doc"; + + +static const char* __doc_gr_tempest_sampling_synchronization_sampling_synchronization_0 = + R"doc()doc"; + + +static const char* __doc_gr_tempest_sampling_synchronization_sampling_synchronization_1 = + R"doc()doc"; + + +static const char* __doc_gr_tempest_sampling_synchronization_make = R"doc()doc"; + + +static const char* __doc_gr_tempest_sampling_synchronization_set_Htotal = R"doc()doc"; + + +static const char* __doc_gr_tempest_sampling_synchronization_set_manual_correction = + R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/ssamp_correction_pydoc_template.h b/python/tempest/bindings/docstrings/ssamp_correction_pydoc_template.h new file mode 100644 index 0000000..753ff35 --- /dev/null +++ b/python/tempest/bindings/docstrings/ssamp_correction_pydoc_template.h @@ -0,0 +1,30 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_ssamp_correction = R"doc()doc"; + + +static const char* __doc_gr_tempest_ssamp_correction_ssamp_correction_0 = R"doc()doc"; + + +static const char* __doc_gr_tempest_ssamp_correction_ssamp_correction_1 = R"doc()doc"; + + +static const char* __doc_gr_tempest_ssamp_correction_make = R"doc()doc"; + + +static const char* __doc_gr_tempest_ssamp_correction_set_Htotal_Vtotal = R"doc()doc"; diff --git a/python/tempest/bindings/docstrings/sync_detector_pydoc_template.h b/python/tempest/bindings/docstrings/sync_detector_pydoc_template.h new file mode 100644 index 0000000..c726589 --- /dev/null +++ b/python/tempest/bindings/docstrings/sync_detector_pydoc_template.h @@ -0,0 +1,24 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ +#include "pydoc_macros.h" +#define D(...) DOC(gr, tempest, __VA_ARGS__) +/* + This file contains placeholders for docstrings for the Python bindings. + Do not edit! These were automatically extracted during the binding process + and will be overwritten during the build process + */ + + +static const char* __doc_gr_tempest_sync_detector = R"doc()doc"; + + +static const char* __doc_gr_tempest_sync_detector_sync_detector = R"doc()doc"; + + +static const char* __doc_gr_tempest_sync_detector_make = R"doc()doc"; diff --git a/python/tempest/bindings/fft_peak_fine_sampling_sync_python.cc b/python/tempest/bindings/fft_peak_fine_sampling_sync_python.cc new file mode 100644 index 0000000..72a167a --- /dev/null +++ b/python/tempest/bindings/fft_peak_fine_sampling_sync_python.cc @@ -0,0 +1,53 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(fft_peak_fine_sampling_sync.h) */ +/* BINDTOOL_HEADER_FILE_HASH(19340e1003ac5b249f2fe16f117b331b) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_fft_peak_fine_sampling_sync(py::module& m) +{ + + using fft_peak_fine_sampling_sync = ::gr::tempest::fft_peak_fine_sampling_sync; + + + py::class_>( + m, "fft_peak_fine_sampling_sync", D(fft_peak_fine_sampling_sync)) + + .def(py::init(&fft_peak_fine_sampling_sync::make), + py::arg("sample_rate"), + py::arg("size"), + py::arg("refresh_rate"), + py::arg("Vvisible"), + py::arg("Hvisible"), + py::arg("automatic_mode"), + D(fft_peak_fine_sampling_sync, make)) + + + ; +} diff --git a/python/tempest/bindings/fine_sampling_synchronization_python.cc b/python/tempest/bindings/fine_sampling_synchronization_python.cc new file mode 100644 index 0000000..31e9982 --- /dev/null +++ b/python/tempest/bindings/fine_sampling_synchronization_python.cc @@ -0,0 +1,58 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(fine_sampling_synchronization.h) */ +/* BINDTOOL_HEADER_FILE_HASH(d9255331a9967d64d71153447c08db71) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_fine_sampling_synchronization(py::module& m) +{ + + using fine_sampling_synchronization = ::gr::tempest::fine_sampling_synchronization; + + + py::class_>( + m, "fine_sampling_synchronization", D(fine_sampling_synchronization)) + + .def(py::init(&fine_sampling_synchronization::make), + py::arg("Htotal"), + py::arg("Vtotal"), + py::arg("correct_sampling"), + py::arg("max_deviation"), + py::arg("update_proba"), + D(fine_sampling_synchronization, make)) + + + .def("set_Htotal_Vtotal", + &fine_sampling_synchronization::set_Htotal_Vtotal, + py::arg("Htotal"), + py::arg("Vtotal"), + D(fine_sampling_synchronization, set_Htotal_Vtotal)) + + ; +} diff --git a/python/tempest/bindings/frame_drop_python.cc b/python/tempest/bindings/frame_drop_python.cc new file mode 100644 index 0000000..e38e333 --- /dev/null +++ b/python/tempest/bindings/frame_drop_python.cc @@ -0,0 +1,50 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(frame_drop.h) */ +/* BINDTOOL_HEADER_FILE_HASH(00d8b6f2eafe62291155631d8b612bd8) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_frame_drop(py::module& m) +{ + + using frame_drop = ::gr::tempest::frame_drop; + + + py::class_>( + m, "frame_drop", D(frame_drop)) + + .def(py::init(&frame_drop::make), + py::arg("Htotal"), + py::arg("Vtotal"), + py::arg("correct_sampling"), + py::arg("max_deviation"), + py::arg("update_proba"), + py::arg("actual_samp_rate"), + D(frame_drop, make)) + + + ; +} diff --git a/python/tempest/bindings/framing_python.cc b/python/tempest/bindings/framing_python.cc new file mode 100644 index 0000000..827f8a2 --- /dev/null +++ b/python/tempest/bindings/framing_python.cc @@ -0,0 +1,54 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(framing.h) */ +/* BINDTOOL_HEADER_FILE_HASH(1dc5b983d33417fc17da9a9e40797ca6) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_framing(py::module& m) +{ + + using framing = ::gr::tempest::framing; + + + py::class_>( + m, "framing", D(framing)) + + .def(py::init(&framing::make), + py::arg("Htotal"), + py::arg("Vtotal"), + py::arg("Hdisplay"), + py::arg("Vdisplay"), + D(framing, make)) + + + .def("set_Htotal_and_Vtotal", + &framing::set_Htotal_and_Vtotal, + py::arg("Htotal"), + py::arg("Vtotal"), + D(framing, set_Htotal_and_Vtotal)) + + ; +} diff --git a/python/tempest/bindings/header_utils.py b/python/tempest/bindings/header_utils.py new file mode 100644 index 0000000..7c26fe0 --- /dev/null +++ b/python/tempest/bindings/header_utils.py @@ -0,0 +1,80 @@ +# Utilities for reading values in header files + +from argparse import ArgumentParser +import re + + +class PybindHeaderParser: + def __init__(self, pathname): + with open(pathname, 'r') as f: + self.file_txt = f.read() + + def get_flag_automatic(self): + # p = re.compile(r'BINDTOOL_GEN_AUTOMATIC\(([^\s])\)') + # m = p.search(self.file_txt) + m = re.search(r'BINDTOOL_GEN_AUTOMATIC\(([^\s])\)', self.file_txt) + if (m and m.group(1) == '1'): + return True + else: + return False + + def get_flag_pygccxml(self): + # p = re.compile(r'BINDTOOL_USE_PYGCCXML\(([^\s])\)') + # m = p.search(self.file_txt) + m = re.search(r'BINDTOOL_USE_PYGCCXML\(([^\s])\)', self.file_txt) + if (m and m.group(1) == '1'): + return True + else: + return False + + def get_header_filename(self): + # p = re.compile(r'BINDTOOL_HEADER_FILE\(([^\s]*)\)') + # m = p.search(self.file_txt) + m = re.search(r'BINDTOOL_HEADER_FILE\(([^\s]*)\)', self.file_txt) + if (m): + return m.group(1) + else: + return None + + def get_header_file_hash(self): + # p = re.compile(r'BINDTOOL_HEADER_FILE_HASH\(([^\s]*)\)') + # m = p.search(self.file_txt) + m = re.search(r'BINDTOOL_HEADER_FILE_HASH\(([^\s]*)\)', self.file_txt) + if (m): + return m.group(1) + else: + return None + + def get_flags(self): + return f'{self.get_flag_automatic()};{self.get_flag_pygccxml()};{self.get_header_filename()};{self.get_header_file_hash()};' + + +def argParse(): + """Parses commandline args.""" + desc = 'Reads the parameters from the comment block in the pybind files' + parser = ArgumentParser(description=desc) + + parser.add_argument("function", help="Operation to perform on comment block of pybind file", choices=[ + "flag_auto", "flag_pygccxml", "header_filename", "header_file_hash", "all"]) + parser.add_argument( + "pathname", help="Pathname of pybind c++ file to read, e.g. blockname_python.cc") + + return parser.parse_args() + + +if __name__ == "__main__": + # Parse command line options and set up doxyxml. + args = argParse() + + pbhp = PybindHeaderParser(args.pathname) + + if args.function == "flag_auto": + print(pbhp.get_flag_automatic()) + elif args.function == "flag_pygccxml": + print(pbhp.get_flag_pygccxml()) + elif args.function == "header_filename": + print(pbhp.get_header_filename()) + elif args.function == "header_file_hash": + print(pbhp.get_header_file_hash()) + elif args.function == "all": + print(pbhp.get_flags()) diff --git a/python/tempest/bindings/infer_screen_resolution_python.cc b/python/tempest/bindings/infer_screen_resolution_python.cc new file mode 100644 index 0000000..24546be --- /dev/null +++ b/python/tempest/bindings/infer_screen_resolution_python.cc @@ -0,0 +1,57 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(infer_screen_resolution.h) */ +/* BINDTOOL_HEADER_FILE_HASH(b7e5792b72995f24a50602ea0362e783) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_infer_screen_resolution(py::module& m) +{ + + using infer_screen_resolution = ::gr::tempest::infer_screen_resolution; + + + py::class_>( + m, "infer_screen_resolution", D(infer_screen_resolution)) + + .def(py::init(&infer_screen_resolution::make), + py::arg("sample_rate"), + py::arg("fft_size"), + py::arg("refresh_rate"), + py::arg("automatic_mode"), + D(infer_screen_resolution, make)) + + + .def("set_refresh_rate", + &infer_screen_resolution::set_refresh_rate, + py::arg("refresh_rate"), + D(infer_screen_resolution, set_refresh_rate)) + + + ; +} diff --git a/python/tempest/bindings/normalize_flow_python.cc b/python/tempest/bindings/normalize_flow_python.cc new file mode 100644 index 0000000..88481aa --- /dev/null +++ b/python/tempest/bindings/normalize_flow_python.cc @@ -0,0 +1,58 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(normalize_flow.h) */ +/* BINDTOOL_HEADER_FILE_HASH(02b8a4099bc57f1d872b9cdb291a3642) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_normalize_flow(py::module& m) +{ + + using normalize_flow = ::gr::tempest::normalize_flow; + + + py::class_>(m, "normalize_flow", D(normalize_flow)) + + .def(py::init(&normalize_flow::make), + py::arg("min"), + py::arg("max"), + py::arg("window"), + py::arg("alpha_avg"), + py::arg("update_proba"), + D(normalize_flow, make)) + + + .def("set_min_max", + &normalize_flow::set_min_max, + py::arg("min"), + py::arg("max"), + D(normalize_flow, set_min_max)) + + ; +} diff --git a/python/tempest/bindings/python_bindings.cc b/python/tempest/bindings/python_bindings.cc new file mode 100644 index 0000000..f665f08 --- /dev/null +++ b/python/tempest/bindings/python_bindings.cc @@ -0,0 +1,73 @@ +/* + * Copyright 2020 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +#include + +#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION +#include + +namespace py = pybind11; + +// Headers for binding functions +/**************************************/ +// The following comment block is used for +// gr_modtool to insert function prototypes +// Please do not delete +/**************************************/ +// BINDING_FUNCTION_PROTOTYPES( +void bind_fft_peak_fine_sampling_sync(py::module& m); +void bind_fine_sampling_synchronization(py::module& m); +void bind_frame_drop(py::module& m); +void bind_framing(py::module& m); +void bind_Hsync(py::module& m); +void bind_infer_screen_resolution(py::module& m); +void bind_normalize_flow(py::module& m); +void bind_sampling_synchronization(py::module& m); +void bind_ssamp_correction(py::module& m); +void bind_sync_detector(py::module& m); +// ) END BINDING_FUNCTION_PROTOTYPES + + +// We need this hack because import_array() returns NULL +// for newer Python versions. +// This function is also necessary because it ensures access to the C API +// and removes a warning. +void* init_numpy() +{ + import_array(); + return NULL; +} + +PYBIND11_MODULE(tempest_python, m) +{ + // Initialize the numpy C API + // (otherwise we will see segmentation faults) + init_numpy(); + + // Allow access to base block methods + py::module::import("gnuradio.gr"); + + /**************************************/ + // The following comment block is used for + // gr_modtool to insert binding function calls + // Please do not delete + /**************************************/ + // BINDING_FUNCTION_CALLS( + bind_fft_peak_fine_sampling_sync(m); + bind_fine_sampling_synchronization(m); + bind_frame_drop(m); + bind_framing(m); + bind_Hsync(m); + bind_infer_screen_resolution(m); + bind_normalize_flow(m); + bind_sampling_synchronization(m); + bind_ssamp_correction(m); + bind_sync_detector(m); + // ) END BINDING_FUNCTION_CALLS +} diff --git a/python/tempest/bindings/sampling_synchronization_python.cc b/python/tempest/bindings/sampling_synchronization_python.cc new file mode 100644 index 0000000..d44a26e --- /dev/null +++ b/python/tempest/bindings/sampling_synchronization_python.cc @@ -0,0 +1,60 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(sampling_synchronization.h) */ +/* BINDTOOL_HEADER_FILE_HASH(c8bb79ae5be873e8364ff176c2a43efe) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_sampling_synchronization(py::module& m) +{ + + using sampling_synchronization = ::gr::tempest::sampling_synchronization; + + + py::class_>( + m, "sampling_synchronization", D(sampling_synchronization)) + + .def(py::init(&sampling_synchronization::make), + py::arg("Htotal"), + py::arg("manual_correction"), + D(sampling_synchronization, make)) + + + .def("set_Htotal", + &sampling_synchronization::set_Htotal, + py::arg("Htotal"), + D(sampling_synchronization, set_Htotal)) + + + .def("set_manual_correction", + &sampling_synchronization::set_manual_correction, + py::arg("correction"), + D(sampling_synchronization, set_manual_correction)) + + ; +} diff --git a/python/tempest/bindings/ssamp_correction_python.cc b/python/tempest/bindings/ssamp_correction_python.cc new file mode 100644 index 0000000..176d321 --- /dev/null +++ b/python/tempest/bindings/ssamp_correction_python.cc @@ -0,0 +1,57 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(ssamp_correction.h) */ +/* BINDTOOL_HEADER_FILE_HASH(527806cb08220d4e82c16caf192352fd) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_ssamp_correction(py::module& m) +{ + + using ssamp_correction = ::gr::tempest::ssamp_correction; + + + py::class_>( + m, "ssamp_correction", D(ssamp_correction)) + + .def(py::init(&ssamp_correction::make), + py::arg("Htotal"), + py::arg("Vtotal"), + py::arg("correct_sampling"), + py::arg("max_deviation"), + D(ssamp_correction, make)) + + + .def("set_Htotal_Vtotal", + &ssamp_correction::set_Htotal_Vtotal, + py::arg("Htotal"), + py::arg("Vtotal"), + D(ssamp_correction, set_Htotal_Vtotal)) + + ; +} diff --git a/python/tempest/bindings/sync_detector_python.cc b/python/tempest/bindings/sync_detector_python.cc new file mode 100644 index 0000000..3b1b6d6 --- /dev/null +++ b/python/tempest/bindings/sync_detector_python.cc @@ -0,0 +1,48 @@ +/* + * Copyright 2022 Free Software Foundation, Inc. + * + * This file is part of GNU Radio + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +/***********************************************************************************/ +/* This file is automatically generated using bindtool and can be manually edited */ +/* The following lines can be configured to regenerate this file during cmake */ +/* If manual edits are made, the following tags should be modified accordingly. */ +/* BINDTOOL_GEN_AUTOMATIC(0) */ +/* BINDTOOL_USE_PYGCCXML(0) */ +/* BINDTOOL_HEADER_FILE(sync_detector.h) */ +/* BINDTOOL_HEADER_FILE_HASH(65ca4383a924b017caf558ab02f5a3fe) */ +/***********************************************************************************/ + +#include +#include +#include + +namespace py = pybind11; + +#include +// pydoc.h is automatically generated in the build directory +#include + +void bind_sync_detector(py::module& m) +{ + + using sync_detector = ::gr::tempest::sync_detector; + + + py::class_>( + m, "sync_detector", D(sync_detector)) + + .def(py::init(&sync_detector::make), + py::arg("hscreen"), + py::arg("vscreen"), + py::arg("hblanking"), + py::arg("vblanking"), + D(sync_detector, make)) + + + ; +} diff --git a/python/image_source.py b/python/tempest/image_source.py similarity index 100% rename from python/image_source.py rename to python/tempest/image_source.py diff --git a/python/tempest/message_to_var.py b/python/tempest/message_to_var.py new file mode 100644 index 0000000..1ff7d41 --- /dev/null +++ b/python/tempest/message_to_var.py @@ -0,0 +1,62 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Copyright 2020 +# Federico "Larroca" La Rocca +# +# Instituto de Ingenieria Electrica, Facultad de Ingenieria, +# Universidad de la Republica, Uruguay. +# +# This is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This software is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this software; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# +# + + +import numpy +import pmt +from gnuradio import gr + +class message_to_var(gr.sync_block): + """ + docstring for block message_to_var + """ + def __init__(self, callback): + gr.sync_block.__init__(self, + name="message_to_var", + in_sig=None, out_sig=None) + + self.callback = callback + self.message_port_register_in(pmt.intern("port0")) + self.set_msg_handler(pmt.intern("port0"), self.msg_handler_function) + + def work(self, input_items, output_items): + return len(input_items[0]) + + def msg_handler_function(self, msg): + if (pmt.is_pair(msg)): + key = pmt.car(msg) # If is a pair, return the car, otherwise raise wrong_type + val = pmt.cdr(msg) # If is a pair, return the cdr, otherwise raise wrong_type + #(pmt::eq(key, pmt::string_to_symbol("ratio")) + if(pmt.eq(pmt.intern("refresh_rate"),key) or + pmt.eq(pmt.intern("Hvisible"),key) or + pmt.eq(pmt.intern("Hblank"),key) or + pmt.eq(pmt.intern("Vblank"),key) or + pmt.eq(pmt.intern("Vvisible"),key)): + if self.callback: + self.callback(pmt.to_python(val)) + + def stop(self): + return True diff --git a/python/qa_Hsync.py b/python/tempest/qa_Hsync.py similarity index 97% rename from python/qa_Hsync.py rename to python/tempest/qa_Hsync.py index 073f99b..3f87438 100755 --- a/python/qa_Hsync.py +++ b/python/tempest/qa_Hsync.py @@ -26,7 +26,7 @@ from gnuradio import gr, gr_unittest from gnuradio import blocks -import tempest_swig as tempest +import tempest_python as tempest class qa_Hsync(gr_unittest.TestCase): diff --git a/python/qa_fine_sampling_synchronization.py b/python/tempest/qa_fine_sampling_synchronization.py similarity index 97% rename from python/qa_fine_sampling_synchronization.py rename to python/tempest/qa_fine_sampling_synchronization.py index dfedccb..d7824d4 100755 --- a/python/qa_fine_sampling_synchronization.py +++ b/python/tempest/qa_fine_sampling_synchronization.py @@ -26,7 +26,7 @@ from gnuradio import gr, gr_unittest from gnuradio import blocks -import tempest_swig as tempest +import tempest_python as tempest class qa_fine_sampling_synchronization(gr_unittest.TestCase): diff --git a/python/qa_framing.py b/python/tempest/qa_framing.py similarity index 97% rename from python/qa_framing.py rename to python/tempest/qa_framing.py index 9af49a3..fe51299 100755 --- a/python/qa_framing.py +++ b/python/tempest/qa_framing.py @@ -26,7 +26,7 @@ from gnuradio import gr, gr_unittest from gnuradio import blocks -import tempest_swig as tempest +import tempest_python as tempest class qa_framing(gr_unittest.TestCase): diff --git a/python/qa_image_source.py b/python/tempest/qa_image_source.py similarity index 100% rename from python/qa_image_source.py rename to python/tempest/qa_image_source.py diff --git a/python/tempest/qa_infer_screen_resolution.py b/python/tempest/qa_infer_screen_resolution.py new file mode 100755 index 0000000..d7c5c49 --- /dev/null +++ b/python/tempest/qa_infer_screen_resolution.py @@ -0,0 +1,46 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Copyright 2020 +# Federico "Larroca" La Rocca +# +# Instituto de Ingenieria Electrica, Facultad de Ingenieria, +# Universidad de la Republica, Uruguay. +# +# This is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This software is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this software; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# +# + +from gnuradio import gr, gr_unittest +from gnuradio import blocks +import tempest_python as tempest + +class qa_infer_screen_resolution(gr_unittest.TestCase): + + def setUp(self): + self.tb = gr.top_block() + + def tearDown(self): + self.tb = None + + def test_001_t(self): + # set up fg + self.tb.run() + # check data + + +if __name__ == '__main__': + gr_unittest.run(qa_infer_screen_resolution) diff --git a/python/qa_normalize_flow.py b/python/tempest/qa_normalize_flow.py similarity index 97% rename from python/qa_normalize_flow.py rename to python/tempest/qa_normalize_flow.py index 581197a..ff078b9 100755 --- a/python/qa_normalize_flow.py +++ b/python/tempest/qa_normalize_flow.py @@ -26,7 +26,7 @@ from gnuradio import gr, gr_unittest from gnuradio import blocks -import tempest_swig as tempest +import tempest_python as tempest class qa_normalize_flow(gr_unittest.TestCase): diff --git a/python/qa_sampling_synchronization.py b/python/tempest/qa_sampling_synchronization.py similarity index 97% rename from python/qa_sampling_synchronization.py rename to python/tempest/qa_sampling_synchronization.py index 6fe3aef..d75ddcb 100755 --- a/python/qa_sampling_synchronization.py +++ b/python/tempest/qa_sampling_synchronization.py @@ -26,7 +26,7 @@ from gnuradio import gr, gr_unittest from gnuradio import blocks -import tempest_swig as tempest +import tempest_python as tempest class qa_sampling_synchronization(gr_unittest.TestCase): diff --git a/python/tempest/tempest_msgbtn.py b/python/tempest/tempest_msgbtn.py new file mode 100644 index 0000000..2c6d2ad --- /dev/null +++ b/python/tempest/tempest_msgbtn.py @@ -0,0 +1,67 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Copyright 2020 +# Federico "Larroca" La Rocca +# +# Instituto de Ingenieria Electrica, Facultad de Ingenieria, +# Universidad de la Republica, Uruguay. +# +# This is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# This software is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this software; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# +# + +from PyQt5 import Qt +from gnuradio import gr +import pmt + +class tempest_msgbtn(gr.sync_block, Qt.QPushButton): + """ + docstring for block tempest_msgbtn + this was developed by ghostop14 + https://github.com/ghostop14/gr-guiextra/blob/maint-3.8/python/msgpushbutton.py + """ + def __init__(self, lbl, msgName, msgValue, relBackColor, relFontColor): + gr.sync_block.__init__(self, name = "tempest_msgbtn", in_sig = None, out_sig = None) + Qt.QPushButton.__init__(self,lbl) + + self.lbl = lbl + self.msgName = msgName + self.msgValue = msgValue + + styleStr = "" + if (relBackColor != 'default'): + styleStr = "background-color: " + relBackColor + "; " + + if (relFontColor): + styleStr += "color: " + relFontColor + "; " + + self.setStyleSheet(styleStr) + + self.clicked[bool].connect(self.onBtnClicked) + + self.message_port_register_out(pmt.intern("pressed")) + + def onBtnClicked(self, pressed): + if type(self.msgValue) == int: + self.message_port_pub(pmt.intern("pressed"),pmt.cons( pmt.intern(self.msgName), pmt.from_long(self.msgValue) )) + elif type(self.msgValue) == float: + self.message_port_pub(pmt.intern("pressed"),pmt.cons( pmt.intern(self.msgName), pmt.from_float(self.msgValue) )) + elif type(self.msgValue) == str: + self.message_port_pub(pmt.intern("pressed"),pmt.cons( pmt.intern(self.msgName), pmt.intern(self.msgValue) )) + elif type(self.msgValue) == bool: + self.message_port_pub(pmt.intern("pressed"),pmt.cons( pmt.intern(self.msgName), pmt.from_bool(self.msgValue) )) + diff --git a/swig/CMakeLists.txt b/swig/CMakeLists.txt deleted file mode 100644 index 0dbe90b..0000000 --- a/swig/CMakeLists.txt +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 2011 Free Software Foundation, Inc. -# -# This file was generated by gr_modtool, a tool from the GNU Radio framework -# This file is a part of gr-tempest -# -# GNU Radio is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# GNU Radio is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with GNU Radio; see the file COPYING. If not, write to -# the Free Software Foundation, Inc., 51 Franklin Street, -# Boston, MA 02110-1301, USA. - -######################################################################## -# Check if there is C++ code at all -######################################################################## -if(NOT tempest_sources) - MESSAGE(STATUS "No C++ sources... skipping swig/") - return() -endif(NOT tempest_sources) - -######################################################################## -# Include swig generation macros -######################################################################## -find_package(SWIG) -find_package(PythonLibs) -if(NOT SWIG_FOUND OR NOT PYTHONLIBS_FOUND) - return() -endif() -include(GrSwig) -include(GrPython) - -######################################################################## -# Setup swig generation -######################################################################## -set(GR_SWIG_INCLUDE_DIRS $) -set(GR_SWIG_TARGET_DEPS gnuradio::runtime_swig) - -set(GR_SWIG_LIBRARIES gnuradio-tempest) - -set(GR_SWIG_DOC_FILE ${CMAKE_CURRENT_BINARY_DIR}/tempest_swig_doc.i) -set(GR_SWIG_DOC_DIRS ${CMAKE_CURRENT_SOURCE_DIR}/../include) - -GR_SWIG_MAKE(tempest_swig tempest_swig.i) - -######################################################################## -# Install the build swig module -######################################################################## -GR_SWIG_INSTALL(TARGETS tempest_swig DESTINATION ${GR_PYTHON_DIR}/tempest) - -######################################################################## -# Install swig .i files for development -######################################################################## -install( - FILES - tempest_swig.i - ${CMAKE_CURRENT_BINARY_DIR}/tempest_swig_doc.i - DESTINATION ${GR_INCLUDE_DIR}/tempest/swig -) diff --git a/swig/tempest_swig.i b/swig/tempest_swig.i deleted file mode 100644 index 72d0c2c..0000000 --- a/swig/tempest_swig.i +++ /dev/null @@ -1,27 +0,0 @@ -/* -*- c++ -*- */ - -#define TEMPEST_API - -%include "gnuradio.i" // the common stuff - -//load generated python docstrings -%include "tempest_swig_doc.i" - -%{ -#include "tempest/sampling_synchronization.h" -#include "tempest/framing.h" -#include "tempest/Hsync.h" -#include "tempest/normalize_flow.h" -#include "tempest/fine_sampling_synchronization.h" -%} - -%include "tempest/sampling_synchronization.h" -GR_SWIG_BLOCK_MAGIC2(tempest, sampling_synchronization); -%include "tempest/framing.h" -GR_SWIG_BLOCK_MAGIC2(tempest, framing); -%include "tempest/Hsync.h" -GR_SWIG_BLOCK_MAGIC2(tempest, Hsync); -%include "tempest/normalize_flow.h" -GR_SWIG_BLOCK_MAGIC2(tempest, normalize_flow); -%include "tempest/fine_sampling_synchronization.h" -GR_SWIG_BLOCK_MAGIC2(tempest, fine_sampling_synchronization);