diff --git a/.github/workflows/docs-orchestrator.yml b/.github/workflows/docs-orchestrator.yml new file mode 100644 index 000000000000..99a86ae5dd55 --- /dev/null +++ b/.github/workflows/docs-orchestrator.yml @@ -0,0 +1,362 @@ +name: Docs - Orchestrator + +on: + push: + branches: + - "main" + - "release/**" + paths: + - "docs/**" + pull_request: + paths: + - "docs/**" + workflow_dispatch: + +permissions: + contents: write + actions: read + id-token: write + +concurrency: + group: docs-orchestrator-${{ github.ref }} + cancel-in-progress: true + +jobs: + # ============================================================================= + # Detect Changes (PR only) + # ============================================================================= + detect-changes: + name: "Detect Changed Paths" + if: github.event_name == 'pull_request' + runs-on: ubuntu-latest + outputs: + source_changed: ${{ steps.changes.outputs.source }} + steps: + - uses: actions/checkout@v4 + - uses: dorny/paths-filter@v3 + id: changes + with: + filters: | + source: + - 'src/**' + - 'msg/**' + - 'ROMFS/**' + - 'Tools/module_config/**' + + # ============================================================================= + # PR Metadata Regen (conditional - only when PR touches source files) + # ============================================================================= + pr-metadata-regen: + name: "PR: Generate Metadata" + needs: [detect-changes] + if: github.event_name == 'pull_request' && needs.detect-changes.outputs.source_changed == 'true' + runs-on: [runs-on,runner=4cpu-linux-x64,image=ubuntu24-full-x64,"run-id=${{ github.run_id }}",spot=false,extras=s3-cache] + container: + image: px4io/px4-dev-nuttx-focal:2024-11-07 + steps: + - uses: runs-on/action@v1 + + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Cache Restore - ccache + id: cache-ccache + uses: actions/cache/restore@v4 + with: + path: ~/.ccache + key: ccache-docs-metadata-${{ github.sha }} + restore-keys: | + ccache-docs-metadata- + + - name: Setup ccache + run: | + mkdir -p ~/.ccache + echo "max_size = 1G" > ~/.ccache/ccache.conf + + - name: Build px4_sitl_default + run: | + make px4_sitl_default + env: + CCACHE_DIR: ~/.ccache + + - name: Install Emscripten + run: | + git clone https://github.com/emscripten-core/emsdk.git /opt/emsdk + cd /opt/emsdk + ./emsdk install 3.1.64 + ./emsdk activate 3.1.64 + + - name: Build failsafe_web + run: | + source /opt/emsdk/emsdk_env.sh + make failsafe_web + + - name: Sync all metadata + run: Tools/ci/metadata_sync.sh --sync all + + - name: Upload metadata artifact + uses: actions/upload-artifact@v4 + with: + name: pr-metadata + path: docs/ + retention-days: 1 + + # ============================================================================= + # Push Metadata Regen (main/release branches) + # ============================================================================= + metadata-regen: + name: "Push: Generate & Commit Metadata" + if: github.event_name == 'push' + runs-on: [runs-on,runner=4cpu-linux-x64,image=ubuntu24-full-x64,"run-id=${{ github.run_id }}",spot=false,extras=s3-cache] + container: + image: px4io/px4-dev-nuttx-focal:2024-11-07 + steps: + - uses: runs-on/action@v1 + + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + token: ${{ secrets.PX4BUILTBOT_PERSONAL_ACCESS_TOKEN }} + + - name: Cache Restore - ccache + id: cache-ccache + uses: actions/cache/restore@v4 + with: + path: ~/.ccache + key: ccache-docs-metadata-${{ github.sha }} + restore-keys: | + ccache-docs-metadata- + + - name: Setup ccache + run: | + mkdir -p ~/.ccache + echo "max_size = 1G" > ~/.ccache/ccache.conf + + - name: Build px4_sitl_default + run: | + make px4_sitl_default + env: + CCACHE_DIR: ~/.ccache + + - name: Cache Save - ccache + uses: actions/cache/save@v4 + if: always() + with: + path: ~/.ccache + key: ccache-docs-metadata-${{ github.sha }} + + - name: Install Emscripten + run: | + git clone https://github.com/emscripten-core/emsdk.git /opt/emsdk + cd /opt/emsdk + ./emsdk install 3.1.64 + ./emsdk activate 3.1.64 + + - name: Build failsafe_web + run: | + source /opt/emsdk/emsdk_env.sh + make failsafe_web + + - name: Sync all metadata + run: Tools/ci/metadata_sync.sh --sync all + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + cache-dependency-path: ./docs/yarn.lock + + - name: Format markdown with Prettier + run: | + cd docs + yarn install --frozen-lockfile + yarn prettier --write "en/**/*.md" + + - name: Commit and push changes + run: | + git config --global user.name "${{ secrets.PX4BUILDBOT_USER }}" + git config --global user.email "${{ secrets.PX4BUILDBOT_EMAIL }}" + git add docs/ + if git diff --staged --quiet; then + echo "No changes to commit" + else + git commit -m "docs: auto-sync metadata + + Co-Authored-By: PX4 BuildBot <${{ secrets.PX4BUILDBOT_EMAIL }}>" + git push + fi + + # ============================================================================= + # Link Check + # ============================================================================= + link-check: + name: "Check Links" + needs: [detect-changes, pr-metadata-regen] + if: always() && (github.event_name == 'pull_request') + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ github.event.pull_request.head.sha }} + + - name: Download metadata artifact + if: needs.pr-metadata-regen.result == 'success' + uses: actions/download-artifact@v4 + with: + name: pr-metadata + path: docs/ + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Run link checker + run: | + npm -g install markdown_link_checker_sc@0.0.138 + mkdir -p logs + markdown_link_checker_sc \ + -r "$GITHUB_WORKSPACE" \ + -d docs \ + -e en \ + -i assets \ + -u docs.px4.io/main/ \ + > ./logs/link-check-results.md || true + cat ./logs/link-check-results.md + + - name: Upload link check results + uses: actions/upload-artifact@v4 + with: + name: link-check-results + path: logs/link-check-results.md + retention-days: 7 + + # ============================================================================= + # Build Site + # ============================================================================= + build-site: + name: "Build Site" + needs: [detect-changes, pr-metadata-regen, metadata-regen] + if: always() && (needs.metadata-regen.result == 'success' || needs.metadata-regen.result == 'skipped') + runs-on: [runs-on,runner=4cpu-linux-x64,image=ubuntu24-full-x64,"run-id=${{ github.run_id }}",spot=false,extras=s3-cache] + outputs: + branchname: ${{ steps.set-branch.outputs.branchname }} + releaseversion: ${{ steps.set-version.outputs.releaseversion }} + steps: + - uses: runs-on/action@v1 + + - name: Checkout + uses: actions/checkout@v4 + with: + ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }} + + - name: Download metadata artifact (PR) + if: github.event_name == 'pull_request' && needs.pr-metadata-regen.result == 'success' + uses: actions/download-artifact@v4 + with: + name: pr-metadata + path: docs/ + + - id: set-branch + run: echo "branchname=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT + + - id: set-version + run: | + branch="${{ steps.set-branch.outputs.branchname }}" + if [[ "$branch" == "main" ]]; then + version="main" + else + version="v${branch#release/}" + fi + echo "releaseversion=$version" >> $GITHUB_OUTPUT + + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: npm + cache-dependency-path: ./docs/yarn.lock + + - name: Install dependencies + run: yarn install --frozen-lockfile --cwd ./docs + + - name: Build with VitePress + working-directory: ./docs + env: + BRANCH_NAME: ${{ steps.set-version.outputs.releaseversion }} + run: | + npm run docs:build_ubuntu + touch .vitepress/dist/.nojekyll + npm run docs:sitemap + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: px4_docs_build + path: docs/.vitepress/dist/ + retention-days: 1 + + # ============================================================================= + # Deploy to AWS (push only) + # ============================================================================= + deploy-aws: + name: "Deploy to AWS" + if: github.event_name == 'push' + needs: [metadata-regen, build-site] + runs-on: ubuntu-latest + steps: + - name: Download Artifact + uses: actions/download-artifact@v4 + with: + name: px4_docs_build + path: ~/_book + + - name: Configure AWS from OIDC + uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ secrets.AWS_ROLE_ARN }} + aws-region: us-west-2 + + - name: Sanity check AWS credentials + run: aws sts get-caller-identity + + - name: Upload HTML with short cache + run: | + aws s3 sync ~/_book/ s3://px4-docs/${{ needs.build-site.outputs.releaseversion }}/ \ + --delete \ + --exclude "*" --include "*.html" \ + --cache-control "public, max-age=60" + + - name: Upload assets with long cache + run: | + aws s3 sync ~/_book/ s3://px4-docs/${{ needs.build-site.outputs.releaseversion }}/ \ + --delete \ + --exclude "*.html" \ + --cache-control "public, max-age=86400, immutable" + + # ============================================================================= + # Crowdin Upload (push only) + # ============================================================================= + crowdin-upload: + name: "Upload to Crowdin" + if: github.event_name == 'push' && github.ref == 'refs/heads/main' + needs: [metadata-regen, build-site] + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Upload to Crowdin + uses: crowdin/github-action@v2 + with: + upload_sources: true + upload_translations: false + download_translations: false + source: docs/en/**/*.md + project_id: ${{ secrets.CROWDIN_PROJECT_ID }} + token: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/.github/workflows/docs_metadata_check.yml b/.github/workflows/docs_metadata_check.yml new file mode 100644 index 000000000000..b9a0ad3572cc --- /dev/null +++ b/.github/workflows/docs_metadata_check.yml @@ -0,0 +1,49 @@ +name: Docs Metadata Checks + +permissions: + contents: write + +on: + pull_request: {} + push: + branches: + - main + - 'release/**' + +jobs: + metadata-check: + name: ${{ matrix.name }} metadata + runs-on: [runs-on,runner=2cpu-linux-x64,image=ubuntu24-full-x64,"run-id=${{ github.run_id }}",spot=true] + container: + image: ghcr.io/px4/px4-dev:v1.16.0-ondemand + strategy: + fail-fast: false + matrix: + include: + - name: uORB Graphs + script: Tools/ci/metadata_uorb_graph.sh + # - name: Failsafe Web + # script: Tools/ci/metadata_failsafe_web.sh + - name: uORB Messages + script: Tools/ci/metadata_msg_docs.sh + - name: Parameter Reference + script: Tools/ci/metadata_parameters.sh + - name: Airframe Reference + script: Tools/ci/metadata_airframe.sh + - name: Module Reference + script: Tools/ci/metadata_modules.sh + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + persist-credentials: true + + - name: Mark all directories safe for Git + run: git config --system --add safe.directory '*' + + - name: Run ${{ matrix.name }} metadata check + run: ${{ matrix.script }} --test-only + + - name: Setup tmate session + if: ${{ failure() }} + uses: mxschmitt/action-tmate@v3 diff --git a/.gitignore b/.gitignore index f90db3cf6fe2..fcf982c8df20 100644 --- a/.gitignore +++ b/.gitignore @@ -109,3 +109,6 @@ src/systemcmds/topic_listener/listener_generated.cpp # colcon log/ keys/ + +# metadata +_emscripten_sdk/ diff --git a/Makefile b/Makefile index 3639bbdee403..2d3336320657 100644 --- a/Makefile +++ b/Makefile @@ -598,3 +598,10 @@ failsafe_web: run_failsafe_web_server: failsafe_web @cd build/px4_sitl_default_failsafe_web && \ python3 -m http.server + +# Generate reference documentation for uORB messages +.PHONY: msg_docs +msg_docs: + $(call colorecho,'Generating uORB message reference docs') + @mkdir -p build/msg_docs + @./Tools/msg/generate_msg_docs.py -d build/msg_docs diff --git a/Tools/ci/metadata_sync.sh b/Tools/ci/metadata_sync.sh new file mode 100755 index 000000000000..780bb86ceab2 --- /dev/null +++ b/Tools/ci/metadata_sync.sh @@ -0,0 +1,431 @@ +#!/usr/bin/env bash +# +# metadata_sync.sh - Unified metadata generation and synchronization for PX4 docs +# +# Usage: +# Tools/ci/metadata_sync.sh [OPTIONS] [TYPES...] +# +# Types: +# parameters - Parameter reference (docs/en/advanced_config/parameter_reference.md) +# airframes - Airframe reference (docs/en/airframes/airframe_reference.md) +# modules - Module documentation (docs/en/modules/*.md) +# msg_docs - uORB message docs (docs/en/msg_docs/*.md + docs/en/middleware/dds_topics.md) +# uorb_graphs - uORB graph JSONs (docs/public/middleware/*.json) +# failsafe_web - Failsafe simulator (docs/public/config/failsafe/*.{js,wasm,json}) +# all - All of the above (default) +# +# Options: +# --generate Build the make targets to generate fresh metadata +# --sync Copy generated files to docs/ +# --verbose Show detailed output +# --help Show this help +# +# Exit codes: +# 0 - Success (files synced or already up-to-date) +# 1 - Error (build failed, missing files, etc.) +# +# Examples: +# # Full regeneration and sync (orchestrator use case) +# Tools/ci/metadata_sync.sh --generate --sync all +# +# # Just sync specific type (assumes already built) +# Tools/ci/metadata_sync.sh --sync parameters +# +# # Generate only, don't copy +# Tools/ci/metadata_sync.sh --generate uorb_graphs +# +set -euo pipefail +shopt -s nullglob + +# ═══════════════════════════════════════════════════════════════════════════════ +# Configuration +# ═══════════════════════════════════════════════════════════════════════════════ + +EMSCRIPTEN_VERSION="3.1.64" +EMSDK_DIR="${EMSDK_DIR:-_emscripten_sdk}" + +# All available metadata types +ALL_TYPES=(parameters airframes modules msg_docs uorb_graphs failsafe_web) + +# ═══════════════════════════════════════════════════════════════════════════════ +# Logging +# ═══════════════════════════════════════════════════════════════════════════════ + +VERBOSE=false + +log() { + echo "[metadata_sync] $*" +} + +log_verbose() { + if [[ "$VERBOSE" == "true" ]]; then + echo "[metadata_sync] $*" + fi +} + +die() { + echo "[metadata_sync] ERROR: $*" >&2 + exit 1 +} + +# ═══════════════════════════════════════════════════════════════════════════════ +# Help +# ═══════════════════════════════════════════════════════════════════════════════ + +show_help() { + head -n 35 "$0" | tail -n +2 | sed 's/^# \?//' + exit 0 +} + +# ═══════════════════════════════════════════════════════════════════════════════ +# Emscripten Setup +# ═══════════════════════════════════════════════════════════════════════════════ + +ensure_emscripten() { + if command -v emcc >/dev/null 2>&1; then + log_verbose "Emscripten already available: $(emcc --version | head -1)" + return 0 + fi + + log "Setting up Emscripten ${EMSCRIPTEN_VERSION}..." + + if [[ ! -d "$EMSDK_DIR" ]]; then + log_verbose "Cloning emsdk to $EMSDK_DIR" + if [[ "$VERBOSE" == "true" ]]; then + git clone https://github.com/emscripten-core/emsdk.git "$EMSDK_DIR" + else + git clone https://github.com/emscripten-core/emsdk.git "$EMSDK_DIR" >/dev/null 2>&1 + fi + fi + + pushd "$EMSDK_DIR" >/dev/null + if [[ "$VERBOSE" == "true" ]]; then + ./emsdk install "$EMSCRIPTEN_VERSION" + ./emsdk activate "$EMSCRIPTEN_VERSION" + else + ./emsdk install "$EMSCRIPTEN_VERSION" >/dev/null 2>&1 + ./emsdk activate "$EMSCRIPTEN_VERSION" >/dev/null 2>&1 + fi + popd >/dev/null + + # shellcheck source=/dev/null + source "${EMSDK_DIR}/emsdk_env.sh" >/dev/null 2>&1 + + log_verbose "Emscripten ready: $(emcc --version | head -1)" +} + +# ═══════════════════════════════════════════════════════════════════════════════ +# Generation Functions +# ═══════════════════════════════════════════════════════════════════════════════ + +generate_parameters() { + log "Generating parameters metadata..." + if [[ "$VERBOSE" == "true" ]]; then + make parameters_metadata + else + make parameters_metadata >/dev/null 2>&1 + fi +} + +generate_airframes() { + log "Generating airframes metadata..." + if [[ "$VERBOSE" == "true" ]]; then + make airframe_metadata + else + make airframe_metadata >/dev/null 2>&1 + fi +} + +generate_modules() { + log "Generating modules documentation..." + if [[ "$VERBOSE" == "true" ]]; then + make module_documentation + else + make module_documentation >/dev/null 2>&1 + fi +} + +generate_msg_docs() { + log "Generating message documentation..." + if [[ "$VERBOSE" == "true" ]]; then + make msg_docs + else + make msg_docs >/dev/null 2>&1 + fi +} + +generate_uorb_graphs() { + log "Generating uORB graphs..." + if [[ "$VERBOSE" == "true" ]]; then + make uorb_graphs + else + make uorb_graphs >/dev/null 2>&1 + fi +} + +generate_failsafe_web() { + ensure_emscripten + log "Generating failsafe web..." + if [[ "$VERBOSE" == "true" ]]; then + make failsafe_web + else + make failsafe_web >/dev/null 2>&1 + fi +} + +# ═══════════════════════════════════════════════════════════════════════════════ +# Sync Functions +# ═══════════════════════════════════════════════════════════════════════════════ + +sync_parameters() { + local src="build/px4_sitl_default/docs/parameters.md" + local dest="docs/en/advanced_config/parameter_reference.md" + + log "Syncing parameters..." + + if [[ ! -f "$src" ]]; then + die "Source file not found: $src (did you run --generate?)" + fi + + mkdir -p "$(dirname "$dest")" + cp "$src" "$dest" + log_verbose " $src -> $dest" +} + +sync_airframes() { + local src="build/px4_sitl_default/docs/airframes.md" + local dest="docs/en/airframes/airframe_reference.md" + + log "Syncing airframes..." + + if [[ ! -f "$src" ]]; then + die "Source file not found: $src (did you run --generate?)" + fi + + mkdir -p "$(dirname "$dest")" + cp "$src" "$dest" + log_verbose " $src -> $dest" +} + +sync_modules() { + local src_dir="build/px4_sitl_default/docs/modules" + local dest_dir="docs/en/modules" + + log "Syncing modules..." + + if [[ ! -d "$src_dir" ]]; then + die "Source directory not found: $src_dir (did you run --generate?)" + fi + + local src_files=("$src_dir"/*.md) + if [[ ${#src_files[@]} -eq 0 ]]; then + die "No .md files found in $src_dir" + fi + + mkdir -p "$dest_dir" + + for src in "${src_files[@]}"; do + local name + name=$(basename "$src") + cp "$src" "$dest_dir/$name" + log_verbose " $src -> $dest_dir/$name" + done +} + +sync_msg_docs() { + local src_dir="build/px4_sitl_default/msg_docs" + local dest_dir="docs/en/msg_docs" + local middleware_dir="docs/en/middleware" + + log "Syncing message docs..." + + if [[ ! -d "$src_dir" ]]; then + die "Source directory not found: $src_dir (did you run --generate?)" + fi + + local src_files=("$src_dir"/*.md) + if [[ ${#src_files[@]} -eq 0 ]]; then + die "No .md files found in $src_dir" + fi + + mkdir -p "$dest_dir" + mkdir -p "$middleware_dir" + + for src in "${src_files[@]}"; do + local name + name=$(basename "$src") + + # dds_topics.md goes to middleware dir + if [[ "$name" == "dds_topics.md" ]]; then + cp "$src" "$middleware_dir/$name" + log_verbose " $src -> $middleware_dir/$name" + else + cp "$src" "$dest_dir/$name" + log_verbose " $src -> $dest_dir/$name" + fi + done +} + +sync_uorb_graphs() { + local src_dir="Tools/uorb_graph" + local dest_dir="docs/public/middleware" + + log "Syncing uORB graphs..." + + local src_files=("$src_dir"/*.json) + if [[ ${#src_files[@]} -eq 0 ]]; then + die "No .json files found in $src_dir (did you run --generate?)" + fi + + mkdir -p "$dest_dir" + + for src in "${src_files[@]}"; do + local name + name=$(basename "$src") + cp "$src" "$dest_dir/$name" + log_verbose " $src -> $dest_dir/$name" + done +} + +sync_failsafe_web() { + local src_dir="build/px4_sitl_default_failsafe_web" + local dest_dir="docs/public/config/failsafe" + + log "Syncing failsafe web..." + + if [[ ! -d "$src_dir" ]]; then + die "Source directory not found: $src_dir (did you run --generate?)" + fi + + # Gather js, wasm, json files + local src_files=() + for ext in js wasm json; do + src_files+=("$src_dir"/*."$ext") + done + + if [[ ${#src_files[@]} -eq 0 ]]; then + die "No .js/.wasm/.json files found in $src_dir" + fi + + mkdir -p "$dest_dir" + + for src in "${src_files[@]}"; do + local name + name=$(basename "$src") + cp "$src" "$dest_dir/$name" + log_verbose " $src -> $dest_dir/$name" + done +} + +# ═══════════════════════════════════════════════════════════════════════════════ +# Main Logic +# ═══════════════════════════════════════════════════════════════════════════════ + +DO_GENERATE=false +DO_SYNC=false +SELECTED_TYPES=() + +parse_args() { + while [[ $# -gt 0 ]]; do + case "$1" in + --generate) + DO_GENERATE=true + shift + ;; + --sync) + DO_SYNC=true + shift + ;; + --verbose) + VERBOSE=true + shift + ;; + --help|-h) + show_help + ;; + -*) + die "Unknown option: $1" + ;; + *) + # It's a type + SELECTED_TYPES+=("$1") + shift + ;; + esac + done + + # Default to all types if none specified + if [[ ${#SELECTED_TYPES[@]} -eq 0 ]]; then + SELECTED_TYPES=("all") + fi + + # Expand "all" to all types + local expanded_types=() + for t in "${SELECTED_TYPES[@]}"; do + if [[ "$t" == "all" ]]; then + expanded_types+=("${ALL_TYPES[@]}") + else + expanded_types+=("$t") + fi + done + SELECTED_TYPES=("${expanded_types[@]}") + + # Validate types + for t in "${SELECTED_TYPES[@]}"; do + local valid=false + for valid_type in "${ALL_TYPES[@]}"; do + if [[ "$t" == "$valid_type" ]]; then + valid=true + break + fi + done + if [[ "$valid" == "false" ]]; then + die "Unknown type: $t (valid: ${ALL_TYPES[*]})" + fi + done + + # Must specify at least one action + if [[ "$DO_GENERATE" == "false" && "$DO_SYNC" == "false" ]]; then + die "Must specify at least one of: --generate, --sync" + fi +} + +main() { + parse_args "$@" + + log "Selected types: ${SELECTED_TYPES[*]}" + [[ "$DO_GENERATE" == "true" ]] && log "Actions: generate" + [[ "$DO_SYNC" == "true" ]] && log "Actions: sync" + + # Remove duplicates from SELECTED_TYPES + local -A seen + local unique_types=() + for t in "${SELECTED_TYPES[@]}"; do + if [[ -z "${seen[$t]:-}" ]]; then + seen[$t]=1 + unique_types+=("$t") + fi + done + SELECTED_TYPES=("${unique_types[@]}") + + # Generate phase + if [[ "$DO_GENERATE" == "true" ]]; then + log "=== Generation Phase ===" + for t in "${SELECTED_TYPES[@]}"; do + "generate_$t" + done + fi + + # Sync phase + if [[ "$DO_SYNC" == "true" ]]; then + log "=== Sync Phase ===" + for t in "${SELECTED_TYPES[@]}"; do + "sync_$t" + done + fi + + log "Done." + exit 0 +} + +main "$@" diff --git a/Tools/ci/test_metadata_sync.sh b/Tools/ci/test_metadata_sync.sh new file mode 100755 index 000000000000..55dbc64a722a --- /dev/null +++ b/Tools/ci/test_metadata_sync.sh @@ -0,0 +1,163 @@ +#!/usr/bin/env bash +# +# test_metadata_sync.sh - Test metadata_sync.sh locally using Docker +# +# Usage: +# Tools/ci/test_metadata_sync.sh [OPTIONS] [TYPES...] +# +# Options: +# --shell Drop into interactive shell instead of running sync +# --verbose Pass --verbose to metadata_sync.sh +# --skip-build Skip SITL build (use existing build artifacts) +# --help Show this help +# +# Types: +# Same as metadata_sync.sh: parameters, airframes, modules, msg_docs, uorb_graphs, failsafe_web, all +# +# Examples: +# # Test full regeneration +# Tools/ci/test_metadata_sync.sh all +# +# # Test just parameters (faster) +# Tools/ci/test_metadata_sync.sh parameters +# +# # Drop into shell for debugging +# Tools/ci/test_metadata_sync.sh --shell +# +# # Skip build if you already have artifacts +# Tools/ci/test_metadata_sync.sh --skip-build --verbose all +# +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)" + +DOCKER_IMAGE="px4io/px4-dev:v1.17.0-alpha1" +CONTAINER_NAME="px4-metadata-test-$$" + +SHELL_MODE=false +VERBOSE="" +SKIP_BUILD=false +TYPES=() + +show_help() { + head -n 28 "$0" | tail -n +2 | sed 's/^# \?//' + exit 0 +} + +cleanup() { + echo "[test] Cleaning up container..." + docker rm -f "$CONTAINER_NAME" 2>/dev/null || true +} + +parse_args() { + while [[ $# -gt 0 ]]; do + case "$1" in + --shell) + SHELL_MODE=true + shift + ;; + --verbose) + VERBOSE="--verbose" + shift + ;; + --skip-build) + SKIP_BUILD=true + shift + ;; + --help|-h) + show_help + ;; + -*) + echo "Unknown option: $1" >&2 + exit 1 + ;; + *) + TYPES+=("$1") + shift + ;; + esac + done + + # Default to all types + if [[ ${#TYPES[@]} -eq 0 ]]; then + TYPES=("all") + fi +} + +main() { + parse_args "$@" + + cd "$REPO_ROOT" + + echo "[test] Using Docker image: $DOCKER_IMAGE" + echo "[test] Repository root: $REPO_ROOT" + + # Pull image if not present + if ! docker image inspect "$DOCKER_IMAGE" >/dev/null 2>&1; then + echo "[test] Pulling Docker image..." + docker pull "$DOCKER_IMAGE" + fi + + trap cleanup EXIT + + # Handle git worktrees: the .git file points to the main repo's .git directory + # We need to mount that directory too so git works inside the container + local git_mounts=() + if [[ -f "$REPO_ROOT/.git" ]]; then + # It's a worktree - read the gitdir path and mount it + local gitdir + gitdir=$(grep '^gitdir:' "$REPO_ROOT/.git" | cut -d' ' -f2) + if [[ -n "$gitdir" ]]; then + # Mount the gitdir at the same path so the .git file reference works + git_mounts+=("-v" "$gitdir:$gitdir:ro") + # Also need the main .git directory (parent of worktrees/) + local main_git_dir + main_git_dir=$(dirname "$(dirname "$gitdir")") + git_mounts+=("-v" "$main_git_dir:$main_git_dir:ro") + echo "[test] Detected git worktree, mounting git directories" + fi + fi + + if [[ "$SHELL_MODE" == "true" ]]; then + echo "[test] Starting interactive shell..." + echo "[test] Run: Tools/ci/metadata_sync.sh --generate --sync all" + docker run -it --rm \ + --name "$CONTAINER_NAME" \ + -v "$REPO_ROOT:/src" \ + "${git_mounts[@]}" \ + -w /src \ + "$DOCKER_IMAGE" \ + /bin/bash + else + echo "[test] Running metadata sync for: ${TYPES[*]}" + + # Build the command + local cmd="" + + if [[ "$SKIP_BUILD" == "false" ]]; then + cmd="Tools/ci/metadata_sync.sh --generate --sync $VERBOSE ${TYPES[*]}" + else + cmd="Tools/ci/metadata_sync.sh --sync $VERBOSE ${TYPES[*]}" + fi + + echo "[test] Command: $cmd" + + docker run --rm \ + --name "$CONTAINER_NAME" \ + -v "$REPO_ROOT:/src" \ + "${git_mounts[@]}" \ + -w /src \ + "$DOCKER_IMAGE" \ + /bin/bash -c "$cmd" + + echo "" + echo "[test] Done! Check git status for changes:" + echo " git status -s docs/" + echo "" + echo "[test] To see what changed:" + echo " git diff docs/" + fi +} + +main "$@" diff --git a/docs/.prettierrc b/docs/.prettierrc new file mode 100644 index 000000000000..8018f0709d06 --- /dev/null +++ b/docs/.prettierrc @@ -0,0 +1,8 @@ +{ + "proseWrap": "preserve", + "tabWidth": 2, + "useTabs": false, + "printWidth": 9999, + "endOfLine": "lf", + "embeddedLanguageFormatting": "off" +} diff --git a/docs/en/advanced/px4_metadata.md b/docs/en/advanced/px4_metadata.md index bc0c61dca722..065b5fcf10be 100644 --- a/docs/en/advanced/px4_metadata.md +++ b/docs/en/advanced/px4_metadata.md @@ -31,6 +31,7 @@ For more information see the topics for each data type: - [Parameters & Configurations > Creating/Defining Parameters](../advanced/parameters_and_configurations.md#creating-defining-parameters) - [Events Interface](../concept/events_interface.md) - [Actuator Metadata](#actuator-metadata) (below) + ## Metadata Toolchain The process for handling metadata is the same for all metadata types. @@ -69,6 +70,7 @@ The parameter XML file of the main branch is copied into the QGC source tree via The following diagram shows how actuator metadata is assembled from the source code and used by QGroundControl:  + - **Left**: the metadata is defined in `module.yml` files in different modules. diff --git a/docs/en/advanced_config/advanced_flight_controller_orientation_leveling.md b/docs/en/advanced_config/advanced_flight_controller_orientation_leveling.md index c960ab5eb7db..28007b730f6e 100644 --- a/docs/en/advanced_config/advanced_flight_controller_orientation_leveling.md +++ b/docs/en/advanced_config/advanced_flight_controller_orientation_leveling.md @@ -34,4 +34,3 @@ You can locate the parameters in QGroundControl as shown below: Positive angles increase in CCW direction, negative angles increase in CW direction. - [SENS_BOARD_Z_OFF](../advanced_config/parameter_reference.md#SENS_BOARD_Z_OFF): Rotation, in degrees, around PX4FMU's Z axis Yaw axis. Positive angles increase in CCW direction, negative angles increase in CW direction. - diff --git a/docs/en/advanced_config/bootloader_update_v6xrt.md b/docs/en/advanced_config/bootloader_update_v6xrt.md index a868f8e9db16..9d7f92a4aaf2 100644 --- a/docs/en/advanced_config/bootloader_update_v6xrt.md +++ b/docs/en/advanced_config/bootloader_update_v6xrt.md @@ -63,7 +63,6 @@ The tool is available for Windows, Linux and macOS.  To get the Pixhawk V6X-RT into "ISP bootloader mode" there are 2 options: - 1. Launch QGC connect the Pixhawk select **Analayze Tools** and then **MAVLINK Console**. On the console type `reboot -i`. This will put the Pixhawk V6X-RT into "ISP bootloader mode" diff --git a/docs/en/advanced_config/esc_calibration.md b/docs/en/advanced_config/esc_calibration.md index 45409b993746..c8133ec8709c 100644 --- a/docs/en/advanced_config/esc_calibration.md +++ b/docs/en/advanced_config/esc_calibration.md @@ -89,7 +89,6 @@ To calibrate the ESCs: ::: Verify the following values: - - The minimum value for a motor (default: `1100us`) should make the motor spin slowly but reliably, and also spin up reliably after it was stopped. You can confirm that a motor spins at minimum (still without propellers) in [Actuator Testing](../config/actuators.md#actuator-testing), by enabling the sliders, and then moving the test output slider for the motor to the first snap position from the bottom. diff --git a/docs/en/advanced_config/parameter_reference.md b/docs/en/advanced_config/parameter_reference.md index 71e4262e9064..69618f0b0bb2 100644 --- a/docs/en/advanced_config/parameter_reference.md +++ b/docs/en/advanced_config/parameter_reference.md @@ -10,47 +10,263 @@ If a listed parameter is missing from the Firmware see: [Finding/Updating Parame -## ADC +## UAVCAN Motor Parameters -### ADC_ADS7953_EN (`INT32`) {#ADC_ADS7953_EN} +### ctl_bw (`INT32`) {#ctl_bw} -Enable ADS7953. +Speed controller bandwidth. -Enable the driver for the ADS7953 board +Speed controller bandwidth, in Hz. Higher values result in faster speed and current rise times, but may result in overshoot and higher current consumption. For fixed-wing aircraft, this value should be less than 50 Hz; for multirotors, values up to 100 Hz may provide improvements in responsiveness. -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------------ | ---- | -| ✓ | | | | Disabled (0) | +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 10 | 250 | | 75 | Hz | -### ADC_ADS7953_REFV (`FLOAT`) {#ADC_ADS7953_REFV} +### ctl_dir (`INT32`) {#ctl_dir} -Applied reference Voltage. +Reverse direction. -The voltage applied to the ADS7953 board as reference +Motor spin direction as detected during initial enumeration. Use 0 or 1 to reverse direction. -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------- | ---- | -| ✓ | 2.0 | 3.0 | 0.01 | 2.5 | V | +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1 | | 1 | -### ADC_TLA2528_EN (`INT32`) {#ADC_TLA2528_EN} +### ctl_gain (`FLOAT`) {#ctl_gain} -Enable TLA2528. +Speed (RPM) controller gain. -Enable the driver for the TLA2528 +Determines controller +aggressiveness; units are amp-seconds per radian. Systems with +higher rotational inertia (large props) will need gain increased; +systems with low rotational inertia (small props) may need gain +decreased. Higher values result in faster response, but may result +in oscillation and excessive overshoot. Lower values result in a +slower, smoother response. -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------------ | ---- | -| ✓ | | | | Disabled (0) | +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ----- | +| | 0.00 | 1.00 | | 1 | C/rad | -### ADC_TLA2528_REFV (`FLOAT`) {#ADC_TLA2528_REFV} +### ctl_hz_idle (`FLOAT`) {#ctl_hz_idle} -Applied reference Voltage. +Idle speed (e Hz). -The voltage applied to the TLA2528 board as reference +Idle speed (e Hz) -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------- | ---- | -| ✓ | 2.0 | 3.0 | 0.01 | 2.5 | V | +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 3.5 | Hz | + +### ctl_start_rate (`INT32`) {#ctl_start_rate} + +Spin-up rate (e Hz/s). + +Spin-up rate (e Hz/s) + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ----- | +| | 5 | 1000 | | 25 | 1/s^2 | + +### esc_index (`INT32`) {#esc_index} + +Index of this ESC in throttle command messages. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 15 | | 0 | + +### id_ext_status (`INT32`) {#id_ext_status} + +Extended status ID. + +Extended status ID + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 1 | 1000000 | | 20034 | + +### int_ext_status (`INT32`) {#int_ext_status} + +Extended status interval (µs). + +Extended status interval (µs) + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000000 | | 50000 | us | + +### int_status (`INT32`) {#int_status} + +ESC status interval (µs). + +ESC status interval (µs) + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | 1000000 | | 50000 | us | + +### mot_i_max (`FLOAT`) {#mot_i_max} + +Motor current limit in amps. + +This determines the maximum +current controller setpoint, as well as the maximum allowable +current setpoint slew rate. This value should generally be set to +the continuous current rating listed in the motor’s specification +sheet, or set equal to the motor’s specified continuous power +divided by the motor voltage limit. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 1 | 80 | | 12 | A | + +### mot_kv (`INT32`) {#mot_kv} + +Motor Kv in RPM per volt. + +This can be taken from the motor’s +specification sheet; accuracy will help control performance but +some deviation from the specified value is acceptable. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ----- | +| | 0 | 4000 | | 2300 | rpm/V | + +### mot_ls (`FLOAT`) {#mot_ls} + +READ ONLY: Motor inductance in henries. + +This is measured on start-up. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | | | 0.0 | H | + +### mot_num_poles (`INT32`) {#mot_num_poles} + +Number of motor poles. + +Used to convert mechanical speeds to +electrical speeds. This number should be taken from the motor’s +specification sheet. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 2 | 40 | | 14 | + +### mot_rs (`FLOAT`) {#mot_rs} + +READ ONLY: Motor resistance in ohms. + +This is measured on start-up. When +tuning a new motor, check that this value is approximately equal +to the value shown in the motor’s specification sheet. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | | | 0.0 | Ohm | + +### mot_v_accel (`FLOAT`) {#mot_v_accel} + +Acceleration limit (V). + +Acceleration limit (V) + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.01 | 1.00 | | 0.5 | V | + +### mot_v_max (`FLOAT`) {#mot_v_max} + +Motor voltage limit in volts. + +The current controller’s +commanded voltage will never exceed this value. Note that this may +safely be above the nominal voltage of the motor; to determine the +actual motor voltage limit, divide the motor’s rated power by the +motor current limit. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | | | 14.8 | V | + +## UAVCAN GNSS + +### gnss.dyn_model (`INT32`) {#gnss.dyn_model} + +GNSS dynamic model. + +Dynamic model used in the GNSS positioning engine. 0 – +Automotive, 1 – Sea, 2 – Airborne. + +**Values:** + +- `0`: Automotive +- `1`: Sea +- `2`: Airborne + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 2 | | 2 | + +### gnss.old_fix_msg (`INT32`) {#gnss.old_fix_msg} + +Broadcast old GNSS fix message. + +Broadcast the old (deprecated) GNSS fix message +uavcan.equipment.gnss.Fix alongside the new alternative +uavcan.equipment.gnss.Fix2. It is recommended to +disable this feature to reduce the CAN bus traffic. + +**Values:** + +- `0`: Fix2 +- `1`: Fix and Fix2 + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1 | | 1 | + +### gnss.warn_dimens (`INT32`) {#gnss.warn_dimens} + +device health warning. + +Set the device health to Warning if the dimensionality of +the GNSS solution is less than this value. 3 for the full (3D) +solution, 2 for planar (2D) solution, 1 for time-only solution, +0 disables the feature. + +**Values:** + +- `0`: disables the feature +- `1`: time-only solution +- `2`: planar (2D) solution +- `3`: full (3D) solution + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 3 | | 0 | + +### gnss.warn_sats (`INT32`) {#gnss.warn_sats} + +Set the device health to Warning if the number of satellites +used in the GNSS solution is below this threshold. Zero +disables the feature + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | | | 0 | + +### uavcan.pubp-pres (`INT32`) {#uavcan.pubp-pres} + +Set the device health to Warning if the number of satellites +used in the GNSS solution is below this threshold. Zero +disables the feature + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000000 | | 0 | us | ## ADSB @@ -58,8 +274,7 @@ The voltage applied to the TLA2528 board as reference First 4 characters of CALLSIGN. -Sets first 4 characters of a total of 8. Valid characters are A-Z, 0-9, " ". Example "PX4 " -> 1347957792 -For CALLSIGN shorter than 8 characters use the null terminator at the end '\0'. +Sets first 4 characters of a total of 8. Valid characters are A-Z, 0-9, " ". Example "PX4 " -> 1347957792 For CALLSIGN shorter than 8 characters use the null terminator at the end '\0'. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -69,8 +284,7 @@ For CALLSIGN shorter than 8 characters use the null terminator at the end '\0'. Second 4 characters of CALLSIGN. -Sets second 4 characters of a total of 8. Valid characters are A-Z, 0-9, " " only. Example "TEST" -> 1413829460 -For CALLSIGN shorter than 8 characters use the null terminator at the end '\0'. +Sets second 4 characters of a total of 8. Valid characters are A-Z, 0-9, " " only. Example "TEST" -> 1413829460 For CALLSIGN shorter than 8 characters use the null terminator at the end '\0'. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -270,8 +484,7 @@ This parameter defines the squawk code. Value should be between 0000 and 7777. PCA9685 Output Channel 1 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -281,8 +494,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 10 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -292,8 +504,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 11 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -303,8 +514,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 12 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -314,8 +524,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 13 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -325,8 +534,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 14 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -336,8 +544,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 15 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -347,8 +554,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 16 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -358,8 +564,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 2 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -369,8 +574,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 3 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -380,8 +584,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 4 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -391,8 +594,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 5 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -402,8 +604,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 6 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -413,8 +614,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 7 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -424,8 +624,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 8 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -435,8 +634,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PCA9685 Output Channel 9 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -446,12 +644,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR Put the selected channels into Duty-Cycle output mode. -The driver will output standard pulse-width encoded signal without this bit set. -To make PCA9685 output in duty-cycle fashion, please enable the corresponding -channel bit here and adjusting standard params to suit your need. -The driver will have 12bits resolution for duty-cycle output. That means to achieve 0% to 100% -output range on one channel, the corresponding params MIN and MAX for the channel should be set -to 0 and 4096. Other standard params follows the same rule. +The driver will output standard pulse-width encoded signal without this bit set. To make PCA9685 output in duty-cycle fashion, please enable the corresponding channel bit here and adjusting standard params to suit your need. The driver will have 12bits resolution for duty-cycle output. That means to achieve 0% to 100% output range on one channel, the corresponding params MIN and MAX for the channel should be set to 0 and 4096. Other standard params follows the same rule. **Bitmask:** @@ -476,22 +669,11 @@ to 0 and 4096. Other standard params follows the same rule. | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 65535 | | 0 | -### PCA9685_EN_BUS (`INT32`) {#PCA9685_EN_BUS} - -Enable the PCA9685 output driver. - -The integer refers to the I2C bus number where PCA9685 is connected. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 10 | | 0 | - ### PCA9685_FAIL1 (`INT32`) {#PCA9685_FAIL1} PCA9685 Output Channel 1 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC1). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -501,8 +683,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC1). PCA9685 Output Channel 10 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC10). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC10). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -512,8 +693,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC10) PCA9685 Output Channel 11 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC11). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC11). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -523,8 +703,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC11) PCA9685 Output Channel 12 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC12). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC12). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -534,8 +713,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC12) PCA9685 Output Channel 13 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC13). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC13). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -545,8 +723,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC13) PCA9685 Output Channel 14 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC14). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC14). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -556,8 +733,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC14) PCA9685 Output Channel 15 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC15). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC15). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -567,8 +743,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC15) PCA9685 Output Channel 16 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC16). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC16). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -578,8 +753,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC16) PCA9685 Output Channel 2 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC2). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -589,8 +763,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC2). PCA9685 Output Channel 3 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC3). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -600,8 +773,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC3). PCA9685 Output Channel 4 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC4). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -611,8 +783,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC4). PCA9685 Output Channel 5 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC5). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC5). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -622,8 +793,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC5). PCA9685 Output Channel 6 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC6). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC6). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -633,8 +803,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC6). PCA9685 Output Channel 7 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC7). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC7). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -644,8 +813,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC7). PCA9685 Output Channel 8 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC8). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC8). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -655,8 +823,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC8). PCA9685 Output Channel 9 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PCA9685_FUNC9). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PCA9685_FUNC9). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -666,14 +833,7 @@ When set to -1 (default), the value depends on the function (see PCA9685_FUNC9). PCA9685 Output Channel 1 Output Function. -Select what should be output on PCA9685 Output Channel 1. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -737,14 +897,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 10 Output Function. -Select what should be output on PCA9685 Output Channel 10. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 10. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -808,14 +961,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 11 Output Function. -Select what should be output on PCA9685 Output Channel 11. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 11. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -879,14 +1025,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 12 Output Function. -Select what should be output on PCA9685 Output Channel 12. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 12. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -950,14 +1089,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 13 Output Function. -Select what should be output on PCA9685 Output Channel 13. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 13. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1021,14 +1153,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 14 Output Function. -Select what should be output on PCA9685 Output Channel 14. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 14. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1092,14 +1217,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 15 Output Function. -Select what should be output on PCA9685 Output Channel 15. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 15. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1163,14 +1281,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 16 Output Function. -Select what should be output on PCA9685 Output Channel 16. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 16. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1234,14 +1345,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 2 Output Function. -Select what should be output on PCA9685 Output Channel 2. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1305,14 +1409,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 3 Output Function. -Select what should be output on PCA9685 Output Channel 3. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1376,14 +1473,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 4 Output Function. -Select what should be output on PCA9685 Output Channel 4. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1447,14 +1537,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 5 Output Function. -Select what should be output on PCA9685 Output Channel 5. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1518,14 +1601,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 6 Output Function. -Select what should be output on PCA9685 Output Channel 6. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1589,14 +1665,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 7 Output Function. -Select what should be output on PCA9685 Output Channel 7. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1660,14 +1729,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 8 Output Function. -Select what should be output on PCA9685 Output Channel 8. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1731,14 +1793,7 @@ The default failsafe value is set according to the selected function: PCA9685 Output Channel 9 Output Function. -Select what should be output on PCA9685 Output Channel 9. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PCA9685 Output Channel 9. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -1798,16 +1853,6 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### PCA9685_I2C_ADDR (`INT32`) {#PCA9685_I2C_ADDR} - -I2C address of PCA9685. - -The default address is 0x40 (64). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 1 | 127 | | 64 | - ### PCA9685_MAX1 (`INT32`) {#PCA9685_MAX1} PCA9685 Output Channel 1 Maximum Value. @@ -2132,13 +2177,7 @@ Minimum output value (when not disarmed). PWM cycle frequency. -Controls the PWM frequency at timing perspective. -This is independent from PWM update frequency, as PCA9685 is capable to output -without being continuously commanded by FC. -Higher frequency leads to more accurate pulse width, but some ESCs and servos may not support it. -This parameter should be set to the same value as PWM update rate in most case. -This parameter MUST NOT exceed upper limit of 400.0, if any outputs as generic 1000~2000us -pulse width is desired. Frequency higher than 400 only makes sense in duty-cycle mode. +Controls the PWM frequency at timing perspective. This is independent from PWM update frequency, as PCA9685 is capable to output without being continuously commanded by FC. Higher frequency leads to more accurate pulse width, but some ESCs and servos may not support it. This parameter should be set to the same value as PWM update rate in most case. This parameter MUST NOT exceed upper limit of 400.0, if any outputs as generic 1000~2000us pulse width is desired. Frequency higher than 400 only makes sense in duty-cycle mode. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2148,8 +2187,7 @@ pulse width is desired. Frequency higher than 400 only makes sense in duty-cycle Reverse Output Range for PCA9685 Output. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +Allows to reverse the output range for each channel. Note: this is only useful for servos. **Bitmask:** @@ -2178,131 +2216,17 @@ Note: this is only useful for servos. PWM update rate. -Controls the update rate of PWM output. -Flight Controller will inform those numbers of update events in a second, to PCA9685. -Higher update rate will consume more I2C bandwidth, which may even lead to worse -output latency, or completely block I2C bus. +Controls the update rate of PWM output. Flight Controller will inform those numbers of update events in a second, to PCA9685. Higher update rate will consume more I2C bandwidth, which may even lead to worse output latency, or completely block I2C bus. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | 50.0 | 400.0 | | 50.0 | -### PWM_AUX_CENT1 (`INT32`) {#PWM_AUX_CENT1} - -PWM Aux 1 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT10 (`INT32`) {#PWM_AUX_CENT10} - -PWM Capture 2 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT11 (`INT32`) {#PWM_AUX_CENT11} - -PWM Capture 3 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT2 (`INT32`) {#PWM_AUX_CENT2} - -PWM Aux 2 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT3 (`INT32`) {#PWM_AUX_CENT3} - -PWM Aux 3 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT4 (`INT32`) {#PWM_AUX_CENT4} - -PWM Aux 4 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT5 (`INT32`) {#PWM_AUX_CENT5} - -PWM Aux 5 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT6 (`INT32`) {#PWM_AUX_CENT6} - -PWM Aux 6 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT7 (`INT32`) {#PWM_AUX_CENT7} - -PWM Aux 7 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT8 (`INT32`) {#PWM_AUX_CENT8} - -PWM Aux 8 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - -### PWM_AUX_CENT9 (`INT32`) {#PWM_AUX_CENT9} - -PWM Capture 1 Center Value. - -Servo Center output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 2200 | | -1 | - ### PWM_AUX_DIS1 (`INT32`) {#PWM_AUX_DIS1} PWM Aux 1 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2312,8 +2236,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Capture 2 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2323,8 +2246,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Capture 3 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2334,8 +2256,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 2 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2345,8 +2266,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 3 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2356,8 +2276,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 4 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2367,8 +2286,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 5 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2378,8 +2296,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 6 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2389,8 +2306,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 7 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2400,8 +2316,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 8 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2411,8 +2326,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Capture 1 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2422,8 +2336,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR PWM Aux 1 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC1). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2433,8 +2346,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC1). PWM Capture 2 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC2). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2444,8 +2356,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC2). PWM Capture 3 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC3). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2455,8 +2366,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC3). PWM Aux 2 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC2). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2466,8 +2376,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC2). PWM Aux 3 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC3). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2477,8 +2386,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC3). PWM Aux 4 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC4). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2488,8 +2396,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC4). PWM Aux 5 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC5). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC5). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2499,8 +2406,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC5). PWM Aux 6 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC6). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC6). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2510,8 +2416,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC6). PWM Aux 7 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC7). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC7). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2521,8 +2426,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC7). PWM Aux 8 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC8). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC8). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2532,8 +2436,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC8). PWM Capture 1 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC1). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -2543,14 +2446,7 @@ When set to -1 (default), the value depends on the function (see PWM_AUX_FUNC1). PWM Aux 1 Output Function. -Select what should be output on PWM Aux 1. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -2618,14 +2514,7 @@ The default failsafe value is set according to the selected function: PWM Capture 2 Output Function. -Select what should be output on PWM Capture 2. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Capture 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -2693,14 +2582,7 @@ The default failsafe value is set according to the selected function: PWM Capture 3 Output Function. -Select what should be output on PWM Capture 3. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Capture 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -2768,14 +2650,7 @@ The default failsafe value is set according to the selected function: PWM Aux 2 Output Function. -Select what should be output on PWM Aux 2. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -2843,14 +2718,7 @@ The default failsafe value is set according to the selected function: PWM Aux 3 Output Function. -Select what should be output on PWM Aux 3. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -2918,14 +2786,7 @@ The default failsafe value is set according to the selected function: PWM Aux 4 Output Function. -Select what should be output on PWM Aux 4. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -2993,14 +2854,7 @@ The default failsafe value is set according to the selected function: PWM Aux 5 Output Function. -Select what should be output on PWM Aux 5. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -3068,14 +2922,7 @@ The default failsafe value is set according to the selected function: PWM Aux 6 Output Function. -Select what should be output on PWM Aux 6. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -3143,14 +2990,7 @@ The default failsafe value is set according to the selected function: PWM Aux 7 Output Function. -Select what should be output on PWM Aux 7. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -3218,14 +3058,7 @@ The default failsafe value is set according to the selected function: PWM Aux 8 Output Function. -Select what should be output on PWM Aux 8. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Aux 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -3293,14 +3126,7 @@ The default failsafe value is set according to the selected function: PWM Capture 1 Output Function. -Select what should be output on PWM Capture 1. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on PWM Capture 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -3588,8 +3414,7 @@ Minimum output value (when not disarmed). Reverse Output Range for PWM AUX. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +Allows to reverse the output range for each channel. Note: this is only useful for servos. **Bitmask:** @@ -3613,8 +3438,7 @@ Note: this is only useful for servos. Output Protocol Configuration for PWM Aux 1-4. -Select which Output Protocol to use for outputs PWM Aux 1-4. -Custom PWM rates can be used by directly setting any value >0. +Select which Output Protocol to use for outputs PWM Aux 1-4. Custom PWM rates can be used by directly setting any value >0. **Values:** @@ -3635,8 +3459,7 @@ Custom PWM rates can be used by directly setting any value >0. Output Protocol Configuration for PWM Aux 5-6. -Select which Output Protocol to use for outputs PWM Aux 5-6. -Custom PWM rates can be used by directly setting any value >0. +Select which Output Protocol to use for outputs PWM Aux 5-6. Custom PWM rates can be used by directly setting any value >0. **Values:** @@ -3654,8 +3477,7 @@ Custom PWM rates can be used by directly setting any value >0. Output Protocol Configuration for PWM Aux 7-8. -Select which Output Protocol to use for outputs PWM Aux 7-8. -Custom PWM rates can be used by directly setting any value >0. +Select which Output Protocol to use for outputs PWM Aux 7-8. Custom PWM rates can be used by directly setting any value >0. **Values:** @@ -3673,8 +3495,7 @@ Custom PWM rates can be used by directly setting any value >0. Output Protocol Configuration for PWM Capture 1-3. -Select which Output Protocol to use for outputs PWM Capture 1-3. -Custom PWM rates can be used by directly setting any value >0. +Select which Output Protocol to use for outputs PWM Capture 1-3. Custom PWM rates can be used by directly setting any value >0. **Values:** @@ -3692,8 +3513,7 @@ Custom PWM rates can be used by directly setting any value >0. MAIN 1 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3703,8 +3523,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 2 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3714,8 +3533,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 3 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3725,8 +3543,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 4 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3736,8 +3553,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 5 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3747,8 +3563,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 6 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3758,8 +3573,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 7 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3769,8 +3583,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 8 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3780,8 +3593,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR MAIN 1 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC1). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3791,8 +3603,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC1) MAIN 2 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC2). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3802,8 +3613,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC2) MAIN 3 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC3). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3813,8 +3623,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC3) MAIN 4 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC4). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3824,8 +3633,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC4) MAIN 5 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC5). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC5). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3835,8 +3643,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC5) MAIN 6 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC6). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC6). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3846,8 +3653,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC6) MAIN 7 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC7). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC7). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3857,8 +3663,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC7) MAIN 8 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC8). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC8). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -3868,14 +3673,7 @@ When set to -1 (default), the value depends on the function (see PWM_MAIN_FUNC8) MAIN 1 Output Function. -Select what should be output on MAIN 1. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -3939,14 +3737,7 @@ The default failsafe value is set according to the selected function: MAIN 2 Output Function. -Select what should be output on MAIN 2. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4010,14 +3801,7 @@ The default failsafe value is set according to the selected function: MAIN 3 Output Function. -Select what should be output on MAIN 3. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4081,14 +3865,7 @@ The default failsafe value is set according to the selected function: MAIN 4 Output Function. -Select what should be output on MAIN 4. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4152,14 +3929,7 @@ The default failsafe value is set according to the selected function: MAIN 5 Output Function. -Select what should be output on MAIN 5. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4223,14 +3993,7 @@ The default failsafe value is set according to the selected function: MAIN 6 Output Function. -Select what should be output on MAIN 6. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4294,14 +4057,7 @@ The default failsafe value is set according to the selected function: MAIN 7 Output Function. -Select what should be output on MAIN 7. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4365,14 +4121,7 @@ The default failsafe value is set according to the selected function: MAIN 8 Output Function. -Select what should be output on MAIN 8. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on MAIN 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4596,8 +4345,7 @@ Minimum output value (when not disarmed). Reverse Output Range for PWM MAIN. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +Allows to reverse the output range for each channel. Note: this is only useful for servos. **Bitmask:** @@ -4618,8 +4366,7 @@ Note: this is only useful for servos. Output Protocol Configuration for MAIN 1-2. -Select which Output Protocol to use for outputs MAIN 1-2. -Custom PWM rates can be used by directly setting any value >0. +Select which Output Protocol to use for outputs MAIN 1-2. Custom PWM rates can be used by directly setting any value >0. **Values:** @@ -4637,8 +4384,7 @@ Custom PWM rates can be used by directly setting any value >0. Output Protocol Configuration for MAIN 3-4. -Select which Output Protocol to use for outputs MAIN 3-4. -Custom PWM rates can be used by directly setting any value >0. +Select which Output Protocol to use for outputs MAIN 3-4. Custom PWM rates can be used by directly setting any value >0. **Values:** @@ -4656,8 +4402,7 @@ Custom PWM rates can be used by directly setting any value >0. Output Protocol Configuration for MAIN 5-8. -Select which Output Protocol to use for outputs MAIN 5-8. -Custom PWM rates can be used by directly setting any value >0. +Select which Output Protocol to use for outputs MAIN 5-8. Custom PWM rates can be used by directly setting any value >0. **Values:** @@ -4675,8 +4420,7 @@ Custom PWM rates can be used by directly setting any value >0. Roboclaw Driver Channel 1 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4686,8 +4430,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR Roboclaw Driver Channel 2 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4697,8 +4440,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR Roboclaw Driver Channel 1 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see RBCLW_FUNC1). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see RBCLW_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4708,8 +4450,7 @@ When set to -1 (default), the value depends on the function (see RBCLW_FUNC1). Roboclaw Driver Channel 2 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see RBCLW_FUNC2). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see RBCLW_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4719,14 +4460,7 @@ When set to -1 (default), the value depends on the function (see RBCLW_FUNC2). Roboclaw Driver Channel 1 Output Function. -Select what should be output on Roboclaw Driver Channel 1. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Roboclaw Driver Channel 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4790,14 +4524,7 @@ The default failsafe value is set according to the selected function: Roboclaw Driver Channel 2 Output Function. -Select what should be output on Roboclaw Driver Channel 2. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Roboclaw Driver Channel 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -4901,8 +4628,7 @@ Minimum output value (when not disarmed). Reverse Output Range for Roboclaw Driver. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +Allows to reverse the output range for each channel. Note: this is only useful for servos. **Bitmask:** @@ -4917,41 +4643,7 @@ Note: this is only useful for servos. SIM_GZ ESC 1 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_EC_DIS10 (`INT32`) {#SIM_GZ_EC_DIS10} - -SIM_GZ ESC 10 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_EC_DIS11 (`INT32`) {#SIM_GZ_EC_DIS11} - -SIM_GZ ESC 11 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_EC_DIS12 (`INT32`) {#SIM_GZ_EC_DIS12} - -SIM_GZ ESC 12 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4961,8 +4653,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 2 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4972,8 +4663,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 3 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4983,8 +4673,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 4 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -4994,8 +4683,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 5 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -5005,8 +4693,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 6 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -5016,8 +4703,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 7 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -5027,19 +4713,7 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 8 Disarmed Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_EC_DIS9 (`INT32`) {#SIM_GZ_EC_DIS9} - -SIM_GZ ESC 9 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -5049,146 +4723,343 @@ Note that non-motor outputs might already be active in prearm state if COM_PREAR SIM_GZ ESC 1 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC1). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL10 (`INT32`) {#SIM_GZ_EC_FAIL10} +### SIM_GZ_EC_FAIL2 (`INT32`) {#SIM_GZ_EC_FAIL2} -SIM_GZ ESC 10 Failsafe Value. +SIM_GZ ESC 2 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC10). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL11 (`INT32`) {#SIM_GZ_EC_FAIL11} +### SIM_GZ_EC_FAIL3 (`INT32`) {#SIM_GZ_EC_FAIL3} -SIM_GZ ESC 11 Failsafe Value. +SIM_GZ ESC 3 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC11). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL12 (`INT32`) {#SIM_GZ_EC_FAIL12} +### SIM_GZ_EC_FAIL4 (`INT32`) {#SIM_GZ_EC_FAIL4} -SIM_GZ ESC 12 Failsafe Value. +SIM_GZ ESC 4 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC12). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL2 (`INT32`) {#SIM_GZ_EC_FAIL2} +### SIM_GZ_EC_FAIL5 (`INT32`) {#SIM_GZ_EC_FAIL5} -SIM_GZ ESC 2 Failsafe Value. +SIM_GZ ESC 5 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC2). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC5). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL3 (`INT32`) {#SIM_GZ_EC_FAIL3} +### SIM_GZ_EC_FAIL6 (`INT32`) {#SIM_GZ_EC_FAIL6} -SIM_GZ ESC 3 Failsafe Value. +SIM_GZ ESC 6 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC3). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC6). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL4 (`INT32`) {#SIM_GZ_EC_FAIL4} +### SIM_GZ_EC_FAIL7 (`INT32`) {#SIM_GZ_EC_FAIL7} -SIM_GZ ESC 4 Failsafe Value. +SIM_GZ ESC 7 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC4). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC7). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL5 (`INT32`) {#SIM_GZ_EC_FAIL5} +### SIM_GZ_EC_FAIL8 (`INT32`) {#SIM_GZ_EC_FAIL8} -SIM_GZ ESC 5 Failsafe Value. +SIM_GZ ESC 8 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC5). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC8). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | -1 | 1000 | | -1 | -### SIM_GZ_EC_FAIL6 (`INT32`) {#SIM_GZ_EC_FAIL6} +### SIM_GZ_EC_FUNC1 (`INT32`) {#SIM_GZ_EC_FUNC1} -SIM_GZ ESC 6 Failsafe Value. +SIM_GZ ESC 1 Output Function. + +Select what should be output on SIM_GZ ESC 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC6). +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | | | | 0 | -### SIM_GZ_EC_FAIL7 (`INT32`) {#SIM_GZ_EC_FAIL7} +### SIM_GZ_EC_FUNC2 (`INT32`) {#SIM_GZ_EC_FUNC2} -SIM_GZ ESC 7 Failsafe Value. +SIM_GZ ESC 2 Output Function. + +Select what should be output on SIM_GZ ESC 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC7). +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | | | | 0 | -### SIM_GZ_EC_FAIL8 (`INT32`) {#SIM_GZ_EC_FAIL8} +### SIM_GZ_EC_FUNC3 (`INT32`) {#SIM_GZ_EC_FUNC3} -SIM_GZ ESC 8 Failsafe Value. +SIM_GZ ESC 3 Output Function. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC8). +Select what should be output on SIM_GZ ESC 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | | | | 0 | + +### SIM_GZ_EC_FUNC4 (`INT32`) {#SIM_GZ_EC_FUNC4} -### SIM_GZ_EC_FAIL9 (`INT32`) {#SIM_GZ_EC_FAIL9} +SIM_GZ ESC 4 Output Function. -SIM_GZ ESC 9 Failsafe Value. +Select what should be output on SIM_GZ ESC 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_EC_FUNC9). +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_EC_FUNC1 (`INT32`) {#SIM_GZ_EC_FUNC1} +| | | | | 0 | -SIM_GZ ESC 1 Output Function. +### SIM_GZ_EC_FUNC5 (`INT32`) {#SIM_GZ_EC_FUNC5} -Select what should be output on SIM_GZ ESC 1. -The default failsafe value is set according to the selected function: +SIM_GZ ESC 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ ESC 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5248,18 +5119,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC10 (`INT32`) {#SIM_GZ_EC_FUNC10} - -SIM_GZ ESC 10 Output Function. +### SIM_GZ_EC_FUNC6 (`INT32`) {#SIM_GZ_EC_FUNC6} -Select what should be output on SIM_GZ ESC 10. -The default failsafe value is set according to the selected function: +SIM_GZ ESC 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ ESC 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5319,18 +5183,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC11 (`INT32`) {#SIM_GZ_EC_FUNC11} - -SIM_GZ ESC 11 Output Function. +### SIM_GZ_EC_FUNC7 (`INT32`) {#SIM_GZ_EC_FUNC7} -Select what should be output on SIM_GZ ESC 11. -The default failsafe value is set according to the selected function: +SIM_GZ ESC 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ ESC 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5390,18 +5247,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC12 (`INT32`) {#SIM_GZ_EC_FUNC12} - -SIM_GZ ESC 12 Output Function. +### SIM_GZ_EC_FUNC8 (`INT32`) {#SIM_GZ_EC_FUNC8} -Select what should be output on SIM_GZ ESC 12. -The default failsafe value is set according to the selected function: +SIM_GZ ESC 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ ESC 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5461,18 +5311,352 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC2 (`INT32`) {#SIM_GZ_EC_FUNC2} +### SIM_GZ_EC_MAX1 (`INT32`) {#SIM_GZ_EC_MAX1} -SIM_GZ ESC 2 Output Function. +SIM_GZ ESC 1 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MAX2 (`INT32`) {#SIM_GZ_EC_MAX2} + +SIM_GZ ESC 2 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MAX3 (`INT32`) {#SIM_GZ_EC_MAX3} + +SIM_GZ ESC 3 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MAX4 (`INT32`) {#SIM_GZ_EC_MAX4} + +SIM_GZ ESC 4 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MAX5 (`INT32`) {#SIM_GZ_EC_MAX5} + +SIM_GZ ESC 5 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MAX6 (`INT32`) {#SIM_GZ_EC_MAX6} + +SIM_GZ ESC 6 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MAX7 (`INT32`) {#SIM_GZ_EC_MAX7} + +SIM_GZ ESC 7 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MAX8 (`INT32`) {#SIM_GZ_EC_MAX8} + +SIM_GZ ESC 8 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 1000 | + +### SIM_GZ_EC_MIN1 (`INT32`) {#SIM_GZ_EC_MIN1} + +SIM_GZ ESC 1 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_MIN2 (`INT32`) {#SIM_GZ_EC_MIN2} + +SIM_GZ ESC 2 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_MIN3 (`INT32`) {#SIM_GZ_EC_MIN3} + +SIM_GZ ESC 3 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_MIN4 (`INT32`) {#SIM_GZ_EC_MIN4} + +SIM_GZ ESC 4 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_MIN5 (`INT32`) {#SIM_GZ_EC_MIN5} + +SIM_GZ ESC 5 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_MIN6 (`INT32`) {#SIM_GZ_EC_MIN6} + +SIM_GZ ESC 6 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_MIN7 (`INT32`) {#SIM_GZ_EC_MIN7} + +SIM_GZ ESC 7 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_MIN8 (`INT32`) {#SIM_GZ_EC_MIN8} + +SIM_GZ ESC 8 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 0 | + +### SIM_GZ_EC_REV (`INT32`) {#SIM_GZ_EC_REV} + +Reverse Output Range for SIM_GZ. + +Allows to reverse the output range for each channel. Note: this is only useful for servos. + +**Bitmask:** + +- `0`: SIM_GZ ESC 1 +- `1`: SIM_GZ ESC 2 +- `2`: SIM_GZ ESC 3 +- `3`: SIM_GZ ESC 4 +- `4`: SIM_GZ ESC 5 +- `5`: SIM_GZ ESC 6 +- `6`: SIM_GZ ESC 7 +- `7`: SIM_GZ ESC 8 + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 255 | | 0 | + +### SIM_GZ_SV_DIS1 (`INT32`) {#SIM_GZ_SV_DIS1} + +SIM_GZ Servo 1 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_DIS2 (`INT32`) {#SIM_GZ_SV_DIS2} + +SIM_GZ Servo 2 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_DIS3 (`INT32`) {#SIM_GZ_SV_DIS3} + +SIM_GZ Servo 3 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_DIS4 (`INT32`) {#SIM_GZ_SV_DIS4} + +SIM_GZ Servo 4 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_DIS5 (`INT32`) {#SIM_GZ_SV_DIS5} + +SIM_GZ Servo 5 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_DIS6 (`INT32`) {#SIM_GZ_SV_DIS6} + +SIM_GZ Servo 6 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_DIS7 (`INT32`) {#SIM_GZ_SV_DIS7} + +SIM_GZ Servo 7 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_DIS8 (`INT32`) {#SIM_GZ_SV_DIS8} + +SIM_GZ Servo 8 Disarmed Value. + +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1000 | | 500 | + +### SIM_GZ_SV_FAIL1 (`INT32`) {#SIM_GZ_SV_FAIL1} + +SIM_GZ Servo 1 Failsafe Value. -Select what should be output on SIM_GZ ESC 2. -The default failsafe value is set according to the selected function: +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC1). -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FAIL2 (`INT32`) {#SIM_GZ_SV_FAIL2} + +SIM_GZ Servo 2 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC2). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FAIL3 (`INT32`) {#SIM_GZ_SV_FAIL3} + +SIM_GZ Servo 3 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC3). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FAIL4 (`INT32`) {#SIM_GZ_SV_FAIL4} + +SIM_GZ Servo 4 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC4). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FAIL5 (`INT32`) {#SIM_GZ_SV_FAIL5} + +SIM_GZ Servo 5 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC5). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FAIL6 (`INT32`) {#SIM_GZ_SV_FAIL6} + +SIM_GZ Servo 6 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC6). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FAIL7 (`INT32`) {#SIM_GZ_SV_FAIL7} + +SIM_GZ Servo 7 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC7). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FAIL8 (`INT32`) {#SIM_GZ_SV_FAIL8} + +SIM_GZ Servo 8 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC8). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### SIM_GZ_SV_FUNC1 (`INT32`) {#SIM_GZ_SV_FUNC1} + +SIM_GZ Servo 1 Output Function. + +Select what should be output on SIM_GZ Servo 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5532,18 +5716,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC3 (`INT32`) {#SIM_GZ_EC_FUNC3} - -SIM_GZ ESC 3 Output Function. +### SIM_GZ_SV_FUNC2 (`INT32`) {#SIM_GZ_SV_FUNC2} -Select what should be output on SIM_GZ ESC 3. -The default failsafe value is set according to the selected function: +SIM_GZ Servo 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Servo 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5603,18 +5780,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC4 (`INT32`) {#SIM_GZ_EC_FUNC4} - -SIM_GZ ESC 4 Output Function. +### SIM_GZ_SV_FUNC3 (`INT32`) {#SIM_GZ_SV_FUNC3} -Select what should be output on SIM_GZ ESC 4. -The default failsafe value is set according to the selected function: +SIM_GZ Servo 3 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Servo 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5674,18 +5844,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC5 (`INT32`) {#SIM_GZ_EC_FUNC5} - -SIM_GZ ESC 5 Output Function. +### SIM_GZ_SV_FUNC4 (`INT32`) {#SIM_GZ_SV_FUNC4} -Select what should be output on SIM_GZ ESC 5. -The default failsafe value is set according to the selected function: +SIM_GZ Servo 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Servo 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5745,18 +5908,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC6 (`INT32`) {#SIM_GZ_EC_FUNC6} - -SIM_GZ ESC 6 Output Function. +### SIM_GZ_SV_FUNC5 (`INT32`) {#SIM_GZ_SV_FUNC5} -Select what should be output on SIM_GZ ESC 6. -The default failsafe value is set according to the selected function: +SIM_GZ Servo 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Servo 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5816,18 +5972,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC7 (`INT32`) {#SIM_GZ_EC_FUNC7} - -SIM_GZ ESC 7 Output Function. +### SIM_GZ_SV_FUNC6 (`INT32`) {#SIM_GZ_SV_FUNC6} -Select what should be output on SIM_GZ ESC 7. -The default failsafe value is set according to the selected function: +SIM_GZ Servo 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Servo 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5887,18 +6036,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC8 (`INT32`) {#SIM_GZ_EC_FUNC8} - -SIM_GZ ESC 8 Output Function. +### SIM_GZ_SV_FUNC7 (`INT32`) {#SIM_GZ_SV_FUNC7} -Select what should be output on SIM_GZ ESC 8. -The default failsafe value is set according to the selected function: +SIM_GZ Servo 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Servo 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -5958,18 +6100,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_FUNC9 (`INT32`) {#SIM_GZ_EC_FUNC9} - -SIM_GZ ESC 9 Output Function. +### SIM_GZ_SV_FUNC8 (`INT32`) {#SIM_GZ_SV_FUNC8} -Select what should be output on SIM_GZ ESC 9. -The default failsafe value is set according to the selected function: +SIM_GZ Servo 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Servo 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6029,9 +6164,9 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_EC_MAX1 (`INT32`) {#SIM_GZ_EC_MAX1} +### SIM_GZ_SV_MAX1 (`INT32`) {#SIM_GZ_SV_MAX1} -SIM_GZ ESC 1 Maximum Value. +SIM_GZ Servo 1 Maximum Value. Maxmimum output value (when not disarmed). @@ -6039,9 +6174,9 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX10 (`INT32`) {#SIM_GZ_EC_MAX10} +### SIM_GZ_SV_MAX2 (`INT32`) {#SIM_GZ_SV_MAX2} -SIM_GZ ESC 10 Maximum Value. +SIM_GZ Servo 2 Maximum Value. Maxmimum output value (when not disarmed). @@ -6049,9 +6184,9 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX11 (`INT32`) {#SIM_GZ_EC_MAX11} +### SIM_GZ_SV_MAX3 (`INT32`) {#SIM_GZ_SV_MAX3} -SIM_GZ ESC 11 Maximum Value. +SIM_GZ Servo 3 Maximum Value. Maxmimum output value (when not disarmed). @@ -6059,9 +6194,9 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX12 (`INT32`) {#SIM_GZ_EC_MAX12} +### SIM_GZ_SV_MAX4 (`INT32`) {#SIM_GZ_SV_MAX4} -SIM_GZ ESC 12 Maximum Value. +SIM_GZ Servo 4 Maximum Value. Maxmimum output value (when not disarmed). @@ -6069,9 +6204,9 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX2 (`INT32`) {#SIM_GZ_EC_MAX2} +### SIM_GZ_SV_MAX5 (`INT32`) {#SIM_GZ_SV_MAX5} -SIM_GZ ESC 2 Maximum Value. +SIM_GZ Servo 5 Maximum Value. Maxmimum output value (when not disarmed). @@ -6079,9 +6214,9 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX3 (`INT32`) {#SIM_GZ_EC_MAX3} +### SIM_GZ_SV_MAX6 (`INT32`) {#SIM_GZ_SV_MAX6} -SIM_GZ ESC 3 Maximum Value. +SIM_GZ Servo 6 Maximum Value. Maxmimum output value (when not disarmed). @@ -6089,9 +6224,9 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX4 (`INT32`) {#SIM_GZ_EC_MAX4} +### SIM_GZ_SV_MAX7 (`INT32`) {#SIM_GZ_SV_MAX7} -SIM_GZ ESC 4 Maximum Value. +SIM_GZ Servo 7 Maximum Value. Maxmimum output value (when not disarmed). @@ -6099,9 +6234,9 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX5 (`INT32`) {#SIM_GZ_EC_MAX5} +### SIM_GZ_SV_MAX8 (`INT32`) {#SIM_GZ_SV_MAX8} -SIM_GZ ESC 5 Maximum Value. +SIM_GZ Servo 8 Maximum Value. Maxmimum output value (when not disarmed). @@ -6109,49 +6244,49 @@ Maxmimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 1000 | -### SIM_GZ_EC_MAX6 (`INT32`) {#SIM_GZ_EC_MAX6} +### SIM_GZ_SV_MIN1 (`INT32`) {#SIM_GZ_SV_MIN1} -SIM_GZ ESC 6 Maximum Value. +SIM_GZ Servo 1 Minimum Value. -Maxmimum output value (when not disarmed). +Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | +| | 0 | 1000 | | 0 | -### SIM_GZ_EC_MAX7 (`INT32`) {#SIM_GZ_EC_MAX7} +### SIM_GZ_SV_MIN2 (`INT32`) {#SIM_GZ_SV_MIN2} -SIM_GZ ESC 7 Maximum Value. +SIM_GZ Servo 2 Minimum Value. -Maxmimum output value (when not disarmed). +Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | +| | 0 | 1000 | | 0 | -### SIM_GZ_EC_MAX8 (`INT32`) {#SIM_GZ_EC_MAX8} +### SIM_GZ_SV_MIN3 (`INT32`) {#SIM_GZ_SV_MIN3} -SIM_GZ ESC 8 Maximum Value. +SIM_GZ Servo 3 Minimum Value. -Maxmimum output value (when not disarmed). +Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | +| | 0 | 1000 | | 0 | -### SIM_GZ_EC_MAX9 (`INT32`) {#SIM_GZ_EC_MAX9} +### SIM_GZ_SV_MIN4 (`INT32`) {#SIM_GZ_SV_MIN4} -SIM_GZ ESC 9 Maximum Value. +SIM_GZ Servo 4 Minimum Value. -Maxmimum output value (when not disarmed). +Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | +| | 0 | 1000 | | 0 | -### SIM_GZ_EC_MIN1 (`INT32`) {#SIM_GZ_EC_MIN1} +### SIM_GZ_SV_MIN5 (`INT32`) {#SIM_GZ_SV_MIN5} -SIM_GZ ESC 1 Minimum Value. +SIM_GZ Servo 5 Minimum Value. Minimum output value (when not disarmed). @@ -6159,9 +6294,9 @@ Minimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 0 | -### SIM_GZ_EC_MIN10 (`INT32`) {#SIM_GZ_EC_MIN10} +### SIM_GZ_SV_MIN6 (`INT32`) {#SIM_GZ_SV_MIN6} -SIM_GZ ESC 10 Minimum Value. +SIM_GZ Servo 6 Minimum Value. Minimum output value (when not disarmed). @@ -6169,9 +6304,9 @@ Minimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 0 | -### SIM_GZ_EC_MIN11 (`INT32`) {#SIM_GZ_EC_MIN11} +### SIM_GZ_SV_MIN7 (`INT32`) {#SIM_GZ_SV_MIN7} -SIM_GZ ESC 11 Minimum Value. +SIM_GZ Servo 7 Minimum Value. Minimum output value (when not disarmed). @@ -6179,9 +6314,9 @@ Minimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 0 | -### SIM_GZ_EC_MIN12 (`INT32`) {#SIM_GZ_EC_MIN12} +### SIM_GZ_SV_MIN8 (`INT32`) {#SIM_GZ_SV_MIN8} -SIM_GZ ESC 12 Minimum Value. +SIM_GZ Servo 8 Minimum Value. Minimum output value (when not disarmed). @@ -6189,300 +6324,112 @@ Minimum output value (when not disarmed). | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 1000 | | 0 | -### SIM_GZ_EC_MIN2 (`INT32`) {#SIM_GZ_EC_MIN2} +### SIM_GZ_SV_REV (`INT32`) {#SIM_GZ_SV_REV} -SIM_GZ ESC 2 Minimum Value. +Reverse Output Range for SIM_GZ. -Minimum output value (when not disarmed). +Allows to reverse the output range for each channel. Note: this is only useful for servos. + +**Bitmask:** + +- `0`: SIM_GZ Servo 1 +- `1`: SIM_GZ Servo 2 +- `2`: SIM_GZ Servo 3 +- `3`: SIM_GZ Servo 4 +- `4`: SIM_GZ Servo 5 +- `5`: SIM_GZ Servo 6 +- `6`: SIM_GZ Servo 7 +- `7`: SIM_GZ Servo 8 | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | +| | 0 | 255 | | 0 | -### SIM_GZ_EC_MIN3 (`INT32`) {#SIM_GZ_EC_MIN3} +### SIM_GZ_WH_DIS1 (`INT32`) {#SIM_GZ_WH_DIS1} -SIM_GZ ESC 3 Minimum Value. +SIM_GZ Wheels 1 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | +| | 0 | 200 | | 100 | -### SIM_GZ_EC_MIN4 (`INT32`) {#SIM_GZ_EC_MIN4} +### SIM_GZ_WH_DIS2 (`INT32`) {#SIM_GZ_WH_DIS2} -SIM_GZ ESC 4 Minimum Value. +SIM_GZ Wheels 2 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | +| | 0 | 200 | | 100 | -### SIM_GZ_EC_MIN5 (`INT32`) {#SIM_GZ_EC_MIN5} +### SIM_GZ_WH_DIS3 (`INT32`) {#SIM_GZ_WH_DIS3} -SIM_GZ ESC 5 Minimum Value. +SIM_GZ Wheels 3 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | +| | 0 | 200 | | 100 | -### SIM_GZ_EC_MIN6 (`INT32`) {#SIM_GZ_EC_MIN6} +### SIM_GZ_WH_DIS4 (`INT32`) {#SIM_GZ_WH_DIS4} -SIM_GZ ESC 6 Minimum Value. +SIM_GZ Wheels 4 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | +| | 0 | 200 | | 100 | -### SIM_GZ_EC_MIN7 (`INT32`) {#SIM_GZ_EC_MIN7} +### SIM_GZ_WH_FAIL1 (`INT32`) {#SIM_GZ_WH_FAIL1} -SIM_GZ ESC 7 Minimum Value. +SIM_GZ Wheels 1 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | +| | -1 | 200 | | -1 | -### SIM_GZ_EC_MIN8 (`INT32`) {#SIM_GZ_EC_MIN8} +### SIM_GZ_WH_FAIL2 (`INT32`) {#SIM_GZ_WH_FAIL2} -SIM_GZ ESC 8 Minimum Value. +SIM_GZ Wheels 2 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | +| | -1 | 200 | | -1 | -### SIM_GZ_EC_MIN9 (`INT32`) {#SIM_GZ_EC_MIN9} +### SIM_GZ_WH_FAIL3 (`INT32`) {#SIM_GZ_WH_FAIL3} -SIM_GZ ESC 9 Minimum Value. +SIM_GZ Wheels 3 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_EC_REV (`INT32`) {#SIM_GZ_EC_REV} - -Reverse Output Range for SIM_GZ. +| | -1 | 200 | | -1 | -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +### SIM_GZ_WH_FAIL4 (`INT32`) {#SIM_GZ_WH_FAIL4} -**Bitmask:** +SIM_GZ Wheels 4 Failsafe Value. -- `0`: SIM_GZ ESC 1 -- `1`: SIM_GZ ESC 2 -- `2`: SIM_GZ ESC 3 -- `3`: SIM_GZ ESC 4 -- `4`: SIM_GZ ESC 5 -- `5`: SIM_GZ ESC 6 -- `6`: SIM_GZ ESC 7 -- `7`: SIM_GZ ESC 8 -- `8`: SIM_GZ ESC 9 -- `9`: SIM_GZ ESC 10 -- `10`: SIM_GZ ESC 11 -- `11`: SIM_GZ ESC 12 +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 4095 | | 0 | +| | -1 | 200 | | -1 | -### SIM_GZ_SV_DIS1 (`INT32`) {#SIM_GZ_SV_DIS1} +### SIM_GZ_WH_FUNC1 (`INT32`) {#SIM_GZ_WH_FUNC1} -SIM_GZ Servo 1 Disarmed Value. +SIM_GZ Wheels 1 Output Function. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_DIS2 (`INT32`) {#SIM_GZ_SV_DIS2} - -SIM_GZ Servo 2 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_DIS3 (`INT32`) {#SIM_GZ_SV_DIS3} - -SIM_GZ Servo 3 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_DIS4 (`INT32`) {#SIM_GZ_SV_DIS4} - -SIM_GZ Servo 4 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_DIS5 (`INT32`) {#SIM_GZ_SV_DIS5} - -SIM_GZ Servo 5 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_DIS6 (`INT32`) {#SIM_GZ_SV_DIS6} - -SIM_GZ Servo 6 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_DIS7 (`INT32`) {#SIM_GZ_SV_DIS7} - -SIM_GZ Servo 7 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_DIS8 (`INT32`) {#SIM_GZ_SV_DIS8} - -SIM_GZ Servo 8 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | - -### SIM_GZ_SV_FAIL1 (`INT32`) {#SIM_GZ_SV_FAIL1} - -SIM_GZ Servo 1 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC1). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FAIL2 (`INT32`) {#SIM_GZ_SV_FAIL2} - -SIM_GZ Servo 2 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC2). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FAIL3 (`INT32`) {#SIM_GZ_SV_FAIL3} - -SIM_GZ Servo 3 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC3). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FAIL4 (`INT32`) {#SIM_GZ_SV_FAIL4} - -SIM_GZ Servo 4 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC4). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FAIL5 (`INT32`) {#SIM_GZ_SV_FAIL5} - -SIM_GZ Servo 5 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC5). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FAIL6 (`INT32`) {#SIM_GZ_SV_FAIL6} - -SIM_GZ Servo 6 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC6). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FAIL7 (`INT32`) {#SIM_GZ_SV_FAIL7} - -SIM_GZ Servo 7 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC7). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FAIL8 (`INT32`) {#SIM_GZ_SV_FAIL8} - -SIM_GZ Servo 8 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_SV_FUNC8). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### SIM_GZ_SV_FUNC1 (`INT32`) {#SIM_GZ_SV_FUNC1} - -SIM_GZ Servo 1 Output Function. - -Select what should be output on SIM_GZ Servo 1. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Wheels 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6542,18 +6489,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_FUNC2 (`INT32`) {#SIM_GZ_SV_FUNC2} - -SIM_GZ Servo 2 Output Function. +### SIM_GZ_WH_FUNC2 (`INT32`) {#SIM_GZ_WH_FUNC2} -Select what should be output on SIM_GZ Servo 2. -The default failsafe value is set according to the selected function: +SIM_GZ Wheels 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Wheels 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6613,18 +6553,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_FUNC3 (`INT32`) {#SIM_GZ_SV_FUNC3} - -SIM_GZ Servo 3 Output Function. +### SIM_GZ_WH_FUNC3 (`INT32`) {#SIM_GZ_WH_FUNC3} -Select what should be output on SIM_GZ Servo 3. -The default failsafe value is set according to the selected function: +SIM_GZ Wheels 3 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Wheels 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6684,18 +6617,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_FUNC4 (`INT32`) {#SIM_GZ_SV_FUNC4} - -SIM_GZ Servo 4 Output Function. +### SIM_GZ_WH_FUNC4 (`INT32`) {#SIM_GZ_WH_FUNC4} -Select what should be output on SIM_GZ Servo 4. -The default failsafe value is set according to the selected function: +SIM_GZ Wheels 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on SIM_GZ Wheels 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6755,18 +6681,108 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_FUNC5 (`INT32`) {#SIM_GZ_SV_FUNC5} +### SIM_GZ_WH_MAX1 (`INT32`) {#SIM_GZ_WH_MAX1} -SIM_GZ Servo 5 Output Function. +SIM_GZ Wheels 1 Maximum Value. -Select what should be output on SIM_GZ Servo 5. -The default failsafe value is set according to the selected function: +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 200 | + +### SIM_GZ_WH_MAX2 (`INT32`) {#SIM_GZ_WH_MAX2} -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +SIM_GZ Wheels 2 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 200 | + +### SIM_GZ_WH_MAX3 (`INT32`) {#SIM_GZ_WH_MAX3} + +SIM_GZ Wheels 3 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 200 | + +### SIM_GZ_WH_MAX4 (`INT32`) {#SIM_GZ_WH_MAX4} + +SIM_GZ Wheels 4 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 200 | + +### SIM_GZ_WH_MIN1 (`INT32`) {#SIM_GZ_WH_MIN1} + +SIM_GZ Wheels 1 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 0 | + +### SIM_GZ_WH_MIN2 (`INT32`) {#SIM_GZ_WH_MIN2} + +SIM_GZ Wheels 2 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 0 | + +### SIM_GZ_WH_MIN3 (`INT32`) {#SIM_GZ_WH_MIN3} + +SIM_GZ Wheels 3 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 0 | + +### SIM_GZ_WH_MIN4 (`INT32`) {#SIM_GZ_WH_MIN4} + +SIM_GZ Wheels 4 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 200 | | 0 | + +### SIM_GZ_WH_REV (`INT32`) {#SIM_GZ_WH_REV} + +Reverse Output Range for SIM_GZ. + +Allows to reverse the output range for each channel. Note: this is only useful for servos. + +**Bitmask:** + +- `0`: SIM_GZ Wheels 1 +- `1`: SIM_GZ Wheels 2 +- `2`: SIM_GZ Wheels 3 +- `3`: SIM_GZ Wheels 4 + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 15 | | 0 | + +### TAP_ESC_FUNC1 (`INT32`) {#TAP_ESC_FUNC1} + +TAP ESC Output ESC 1 Output Function. + +Select what should be output on TAP ESC Output ESC 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6826,18 +6842,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_FUNC6 (`INT32`) {#SIM_GZ_SV_FUNC6} - -SIM_GZ Servo 6 Output Function. +### TAP_ESC_FUNC2 (`INT32`) {#TAP_ESC_FUNC2} -Select what should be output on SIM_GZ Servo 6. -The default failsafe value is set according to the selected function: +TAP ESC Output ESC 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on TAP ESC Output ESC 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6897,18 +6906,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_FUNC7 (`INT32`) {#SIM_GZ_SV_FUNC7} - -SIM_GZ Servo 7 Output Function. +### TAP_ESC_FUNC3 (`INT32`) {#TAP_ESC_FUNC3} -Select what should be output on SIM_GZ Servo 7. -The default failsafe value is set according to the selected function: +TAP ESC Output ESC 3 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on TAP ESC Output ESC 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -6968,18 +6970,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_FUNC8 (`INT32`) {#SIM_GZ_SV_FUNC8} - -SIM_GZ Servo 8 Output Function. +### TAP_ESC_FUNC4 (`INT32`) {#TAP_ESC_FUNC4} -Select what should be output on SIM_GZ Servo 8. -The default failsafe value is set according to the selected function: +TAP ESC Output ESC 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on TAP ESC Output ESC 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7039,288 +7034,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_SV_MAX1 (`INT32`) {#SIM_GZ_SV_MAX1} - -SIM_GZ Servo 1 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MAX2 (`INT32`) {#SIM_GZ_SV_MAX2} - -SIM_GZ Servo 2 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MAX3 (`INT32`) {#SIM_GZ_SV_MAX3} - -SIM_GZ Servo 3 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MAX4 (`INT32`) {#SIM_GZ_SV_MAX4} - -SIM_GZ Servo 4 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MAX5 (`INT32`) {#SIM_GZ_SV_MAX5} - -SIM_GZ Servo 5 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MAX6 (`INT32`) {#SIM_GZ_SV_MAX6} - -SIM_GZ Servo 6 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MAX7 (`INT32`) {#SIM_GZ_SV_MAX7} - -SIM_GZ Servo 7 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MAX8 (`INT32`) {#SIM_GZ_SV_MAX8} - -SIM_GZ Servo 8 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### SIM_GZ_SV_MIN1 (`INT32`) {#SIM_GZ_SV_MIN1} - -SIM_GZ Servo 1 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_MIN2 (`INT32`) {#SIM_GZ_SV_MIN2} - -SIM_GZ Servo 2 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_MIN3 (`INT32`) {#SIM_GZ_SV_MIN3} - -SIM_GZ Servo 3 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_MIN4 (`INT32`) {#SIM_GZ_SV_MIN4} - -SIM_GZ Servo 4 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_MIN5 (`INT32`) {#SIM_GZ_SV_MIN5} - -SIM_GZ Servo 5 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_MIN6 (`INT32`) {#SIM_GZ_SV_MIN6} - -SIM_GZ Servo 6 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_MIN7 (`INT32`) {#SIM_GZ_SV_MIN7} - -SIM_GZ Servo 7 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_MIN8 (`INT32`) {#SIM_GZ_SV_MIN8} - -SIM_GZ Servo 8 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### SIM_GZ_SV_REV (`INT32`) {#SIM_GZ_SV_REV} - -Reverse Output Range for SIM_GZ. - -Allows to reverse the output range for each channel. -Note: this is only useful for servos. - -**Bitmask:** - -- `0`: SIM_GZ Servo 1 -- `1`: SIM_GZ Servo 2 -- `2`: SIM_GZ Servo 3 -- `3`: SIM_GZ Servo 4 -- `4`: SIM_GZ Servo 5 -- `5`: SIM_GZ Servo 6 -- `6`: SIM_GZ Servo 7 -- `7`: SIM_GZ Servo 8 - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 255 | | 0 | - -### SIM_GZ_WH_DIS1 (`INT32`) {#SIM_GZ_WH_DIS1} - -SIM_GZ Wheels 1 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 100 | - -### SIM_GZ_WH_DIS2 (`INT32`) {#SIM_GZ_WH_DIS2} - -SIM_GZ Wheels 2 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 100 | - -### SIM_GZ_WH_DIS3 (`INT32`) {#SIM_GZ_WH_DIS3} - -SIM_GZ Wheels 3 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 100 | - -### SIM_GZ_WH_DIS4 (`INT32`) {#SIM_GZ_WH_DIS4} - -SIM_GZ Wheels 4 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 100 | - -### SIM_GZ_WH_FAIL1 (`INT32`) {#SIM_GZ_WH_FAIL1} - -SIM_GZ Wheels 1 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC1). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 200 | | -1 | - -### SIM_GZ_WH_FAIL2 (`INT32`) {#SIM_GZ_WH_FAIL2} - -SIM_GZ Wheels 2 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC2). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 200 | | -1 | - -### SIM_GZ_WH_FAIL3 (`INT32`) {#SIM_GZ_WH_FAIL3} - -SIM_GZ Wheels 3 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC3). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 200 | | -1 | - -### SIM_GZ_WH_FAIL4 (`INT32`) {#SIM_GZ_WH_FAIL4} - -SIM_GZ Wheels 4 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see SIM_GZ_WH_FUNC4). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 200 | | -1 | - -### SIM_GZ_WH_FUNC1 (`INT32`) {#SIM_GZ_WH_FUNC1} - -SIM_GZ Wheels 1 Output Function. +### TAP_ESC_FUNC5 (`INT32`) {#TAP_ESC_FUNC5} -Select what should be output on SIM_GZ Wheels 1. -The default failsafe value is set according to the selected function: +TAP ESC Output ESC 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on TAP ESC Output ESC 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7380,18 +7098,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_WH_FUNC2 (`INT32`) {#SIM_GZ_WH_FUNC2} - -SIM_GZ Wheels 2 Output Function. +### TAP_ESC_FUNC6 (`INT32`) {#TAP_ESC_FUNC6} -Select what should be output on SIM_GZ Wheels 2. -The default failsafe value is set according to the selected function: +TAP ESC Output ESC 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on TAP ESC Output ESC 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7451,18 +7162,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_WH_FUNC3 (`INT32`) {#SIM_GZ_WH_FUNC3} - -SIM_GZ Wheels 3 Output Function. +### TAP_ESC_FUNC7 (`INT32`) {#TAP_ESC_FUNC7} -Select what should be output on SIM_GZ Wheels 3. -The default failsafe value is set according to the selected function: +TAP ESC Output ESC 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on TAP ESC Output ESC 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7522,18 +7226,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_WH_FUNC4 (`INT32`) {#SIM_GZ_WH_FUNC4} - -SIM_GZ Wheels 4 Output Function. +### TAP_ESC_FUNC8 (`INT32`) {#TAP_ESC_FUNC8} -Select what should be output on SIM_GZ Wheels 4. -The default failsafe value is set according to the selected function: +TAP ESC Output ESC 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on TAP ESC Output ESC 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7593,116 +7290,112 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### SIM_GZ_WH_MAX1 (`INT32`) {#SIM_GZ_WH_MAX1} +### TAP_ESC_REV (`INT32`) {#TAP_ESC_REV} -SIM_GZ Wheels 1 Maximum Value. +Reverse Output Range for TAP ESC Output. -Maxmimum output value (when not disarmed). +Allows to reverse the output range for each channel. Note: this is only useful for servos. + +**Bitmask:** + +- `0`: TAP ESC Output ESC 1 +- `1`: TAP ESC Output ESC 2 +- `2`: TAP ESC Output ESC 3 +- `3`: TAP ESC Output ESC 4 +- `4`: TAP ESC Output ESC 5 +- `5`: TAP ESC Output ESC 6 +- `6`: TAP ESC Output ESC 7 +- `7`: TAP ESC Output ESC 8 | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 200 | +| | 0 | 255 | | 0 | -### SIM_GZ_WH_MAX2 (`INT32`) {#SIM_GZ_WH_MAX2} +### UAVCAN_EC_FAIL1 (`INT32`) {#UAVCAN_EC_FAIL1} -SIM_GZ Wheels 2 Maximum Value. +UAVCAN ESC 1 Failsafe Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 200 | +| | -1 | 8191 | | -1 | -### SIM_GZ_WH_MAX3 (`INT32`) {#SIM_GZ_WH_MAX3} +### UAVCAN_EC_FAIL2 (`INT32`) {#UAVCAN_EC_FAIL2} -SIM_GZ Wheels 3 Maximum Value. +UAVCAN ESC 2 Failsafe Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 200 | +| | -1 | 8191 | | -1 | -### SIM_GZ_WH_MAX4 (`INT32`) {#SIM_GZ_WH_MAX4} +### UAVCAN_EC_FAIL3 (`INT32`) {#UAVCAN_EC_FAIL3} -SIM_GZ Wheels 4 Maximum Value. +UAVCAN ESC 3 Failsafe Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 200 | +| | -1 | 8191 | | -1 | -### SIM_GZ_WH_MIN1 (`INT32`) {#SIM_GZ_WH_MIN1} +### UAVCAN_EC_FAIL4 (`INT32`) {#UAVCAN_EC_FAIL4} -SIM_GZ Wheels 1 Minimum Value. +UAVCAN ESC 4 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 0 | +| | -1 | 8191 | | -1 | -### SIM_GZ_WH_MIN2 (`INT32`) {#SIM_GZ_WH_MIN2} +### UAVCAN_EC_FAIL5 (`INT32`) {#UAVCAN_EC_FAIL5} -SIM_GZ Wheels 2 Minimum Value. +UAVCAN ESC 5 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC5). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 0 | +| | -1 | 8191 | | -1 | -### SIM_GZ_WH_MIN3 (`INT32`) {#SIM_GZ_WH_MIN3} +### UAVCAN_EC_FAIL6 (`INT32`) {#UAVCAN_EC_FAIL6} -SIM_GZ Wheels 3 Minimum Value. +UAVCAN ESC 6 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC6). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 0 | +| | -1 | 8191 | | -1 | -### SIM_GZ_WH_MIN4 (`INT32`) {#SIM_GZ_WH_MIN4} +### UAVCAN_EC_FAIL7 (`INT32`) {#UAVCAN_EC_FAIL7} -SIM_GZ Wheels 4 Minimum Value. +UAVCAN ESC 7 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC7). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 200 | | 0 | - -### SIM_GZ_WH_REV (`INT32`) {#SIM_GZ_WH_REV} - -Reverse Output Range for SIM_GZ. +| | -1 | 8191 | | -1 | -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +### UAVCAN_EC_FAIL8 (`INT32`) {#UAVCAN_EC_FAIL8} -**Bitmask:** +UAVCAN ESC 8 Failsafe Value. -- `0`: SIM_GZ Wheels 1 -- `1`: SIM_GZ Wheels 2 -- `2`: SIM_GZ Wheels 3 -- `3`: SIM_GZ Wheels 4 +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC8). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 15 | | 0 | - -### TAP_ESC_FUNC1 (`INT32`) {#TAP_ESC_FUNC1} +| | -1 | 8191 | | -1 | -TAP ESC Output ESC 1 Output Function. +### UAVCAN_EC_FUNC1 (`INT32`) {#UAVCAN_EC_FUNC1} -Select what should be output on TAP ESC Output ESC 1. -The default failsafe value is set according to the selected function: +UAVCAN ESC 1 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7762,18 +7455,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_FUNC2 (`INT32`) {#TAP_ESC_FUNC2} - -TAP ESC Output ESC 2 Output Function. +### UAVCAN_EC_FUNC2 (`INT32`) {#UAVCAN_EC_FUNC2} -Select what should be output on TAP ESC Output ESC 2. -The default failsafe value is set according to the selected function: +UAVCAN ESC 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7833,18 +7519,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_FUNC3 (`INT32`) {#TAP_ESC_FUNC3} - -TAP ESC Output ESC 3 Output Function. +### UAVCAN_EC_FUNC3 (`INT32`) {#UAVCAN_EC_FUNC3} -Select what should be output on TAP ESC Output ESC 3. -The default failsafe value is set according to the selected function: +UAVCAN ESC 3 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7904,18 +7583,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_FUNC4 (`INT32`) {#TAP_ESC_FUNC4} - -TAP ESC Output ESC 4 Output Function. +### UAVCAN_EC_FUNC4 (`INT32`) {#UAVCAN_EC_FUNC4} -Select what should be output on TAP ESC Output ESC 4. -The default failsafe value is set according to the selected function: +UAVCAN ESC 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -7975,18 +7647,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_FUNC5 (`INT32`) {#TAP_ESC_FUNC5} - -TAP ESC Output ESC 5 Output Function. +### UAVCAN_EC_FUNC5 (`INT32`) {#UAVCAN_EC_FUNC5} -Select what should be output on TAP ESC Output ESC 5. -The default failsafe value is set according to the selected function: +UAVCAN ESC 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8046,18 +7711,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_FUNC6 (`INT32`) {#TAP_ESC_FUNC6} - -TAP ESC Output ESC 6 Output Function. +### UAVCAN_EC_FUNC6 (`INT32`) {#UAVCAN_EC_FUNC6} -Select what should be output on TAP ESC Output ESC 6. -The default failsafe value is set according to the selected function: +UAVCAN ESC 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8117,18 +7775,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_FUNC7 (`INT32`) {#TAP_ESC_FUNC7} - -TAP ESC Output ESC 7 Output Function. +### UAVCAN_EC_FUNC7 (`INT32`) {#UAVCAN_EC_FUNC7} -Select what should be output on TAP ESC Output ESC 7. -The default failsafe value is set according to the selected function: +UAVCAN ESC 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8188,18 +7839,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_FUNC8 (`INT32`) {#TAP_ESC_FUNC8} - -TAP ESC Output ESC 8 Output Function. +### UAVCAN_EC_FUNC8 (`INT32`) {#UAVCAN_EC_FUNC8} -Select what should be output on TAP ESC Output ESC 8. -The default failsafe value is set according to the selected function: +UAVCAN ESC 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN ESC 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8259,128 +7903,352 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### TAP_ESC_REV (`INT32`) {#TAP_ESC_REV} +### UAVCAN_EC_MAX1 (`INT32`) {#UAVCAN_EC_MAX1} -Reverse Output Range for TAP ESC Output. +UAVCAN ESC 1 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MAX2 (`INT32`) {#UAVCAN_EC_MAX2} + +UAVCAN ESC 2 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MAX3 (`INT32`) {#UAVCAN_EC_MAX3} + +UAVCAN ESC 3 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MAX4 (`INT32`) {#UAVCAN_EC_MAX4} + +UAVCAN ESC 4 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MAX5 (`INT32`) {#UAVCAN_EC_MAX5} + +UAVCAN ESC 5 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MAX6 (`INT32`) {#UAVCAN_EC_MAX6} + +UAVCAN ESC 6 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MAX7 (`INT32`) {#UAVCAN_EC_MAX7} + +UAVCAN ESC 7 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MAX8 (`INT32`) {#UAVCAN_EC_MAX8} + +UAVCAN ESC 8 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UAVCAN_EC_MIN1 (`INT32`) {#UAVCAN_EC_MIN1} + +UAVCAN ESC 1 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_MIN2 (`INT32`) {#UAVCAN_EC_MIN2} + +UAVCAN ESC 2 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_MIN3 (`INT32`) {#UAVCAN_EC_MIN3} + +UAVCAN ESC 3 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_MIN4 (`INT32`) {#UAVCAN_EC_MIN4} + +UAVCAN ESC 4 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_MIN5 (`INT32`) {#UAVCAN_EC_MIN5} + +UAVCAN ESC 5 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_MIN6 (`INT32`) {#UAVCAN_EC_MIN6} + +UAVCAN ESC 6 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_MIN7 (`INT32`) {#UAVCAN_EC_MIN7} + +UAVCAN ESC 7 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_MIN8 (`INT32`) {#UAVCAN_EC_MIN8} + +UAVCAN ESC 8 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UAVCAN_EC_REV (`INT32`) {#UAVCAN_EC_REV} + +Reverse Output Range for UAVCAN. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +Allows to reverse the output range for each channel. Note: this is only useful for servos. **Bitmask:** -- `0`: TAP ESC Output ESC 1 -- `1`: TAP ESC Output ESC 2 -- `2`: TAP ESC Output ESC 3 -- `3`: TAP ESC Output ESC 4 -- `4`: TAP ESC Output ESC 5 -- `5`: TAP ESC Output ESC 6 -- `6`: TAP ESC Output ESC 7 -- `7`: TAP ESC Output ESC 8 +- `0`: UAVCAN ESC 1 +- `1`: UAVCAN ESC 2 +- `2`: UAVCAN ESC 3 +- `3`: UAVCAN ESC 4 +- `4`: UAVCAN ESC 5 +- `5`: UAVCAN ESC 6 +- `6`: UAVCAN ESC 7 +- `7`: UAVCAN ESC 8 | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 255 | | 0 | -### UAVCAN_EC_FAIL1 (`INT32`) {#UAVCAN_EC_FAIL1} +### UAVCAN_SV_DIS1 (`INT32`) {#UAVCAN_SV_DIS1} -UAVCAN ESC 1 Failsafe Value. +UAVCAN Servo 1 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC1). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FAIL2 (`INT32`) {#UAVCAN_EC_FAIL2} +### UAVCAN_SV_DIS2 (`INT32`) {#UAVCAN_SV_DIS2} -UAVCAN ESC 2 Failsafe Value. +UAVCAN Servo 2 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC2). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FAIL3 (`INT32`) {#UAVCAN_EC_FAIL3} +### UAVCAN_SV_DIS3 (`INT32`) {#UAVCAN_SV_DIS3} -UAVCAN ESC 3 Failsafe Value. +UAVCAN Servo 3 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC3). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FAIL4 (`INT32`) {#UAVCAN_EC_FAIL4} +### UAVCAN_SV_DIS4 (`INT32`) {#UAVCAN_SV_DIS4} -UAVCAN ESC 4 Failsafe Value. +UAVCAN Servo 4 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC4). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FAIL5 (`INT32`) {#UAVCAN_EC_FAIL5} +### UAVCAN_SV_DIS5 (`INT32`) {#UAVCAN_SV_DIS5} -UAVCAN ESC 5 Failsafe Value. +UAVCAN Servo 5 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC5). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FAIL6 (`INT32`) {#UAVCAN_EC_FAIL6} +### UAVCAN_SV_DIS6 (`INT32`) {#UAVCAN_SV_DIS6} -UAVCAN ESC 6 Failsafe Value. +UAVCAN Servo 6 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC6). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FAIL7 (`INT32`) {#UAVCAN_EC_FAIL7} +### UAVCAN_SV_DIS7 (`INT32`) {#UAVCAN_SV_DIS7} -UAVCAN ESC 7 Failsafe Value. +UAVCAN Servo 7 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC7). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FAIL8 (`INT32`) {#UAVCAN_EC_FAIL8} +### UAVCAN_SV_DIS8 (`INT32`) {#UAVCAN_SV_DIS8} -UAVCAN ESC 8 Failsafe Value. +UAVCAN Servo 8 Disarmed Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_EC_FUNC8). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | +| | 0 | 1000 | | 500 | -### UAVCAN_EC_FUNC1 (`INT32`) {#UAVCAN_EC_FUNC1} +### UAVCAN_SV_FAIL1 (`INT32`) {#UAVCAN_SV_FAIL1} -UAVCAN ESC 1 Output Function. +UAVCAN Servo 1 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC1). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FAIL2 (`INT32`) {#UAVCAN_SV_FAIL2} + +UAVCAN Servo 2 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC2). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FAIL3 (`INT32`) {#UAVCAN_SV_FAIL3} + +UAVCAN Servo 3 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC3). -Select what should be output on UAVCAN ESC 1. -The default failsafe value is set according to the selected function: +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FAIL4 (`INT32`) {#UAVCAN_SV_FAIL4} + +UAVCAN Servo 4 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC4). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FAIL5 (`INT32`) {#UAVCAN_SV_FAIL5} + +UAVCAN Servo 5 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC5). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FAIL6 (`INT32`) {#UAVCAN_SV_FAIL6} + +UAVCAN Servo 6 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC6). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FAIL7 (`INT32`) {#UAVCAN_SV_FAIL7} -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +UAVCAN Servo 7 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC7). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FAIL8 (`INT32`) {#UAVCAN_SV_FAIL8} + +UAVCAN Servo 8 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC8). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 1000 | | -1 | + +### UAVCAN_SV_FUNC1 (`INT32`) {#UAVCAN_SV_FUNC1} + +UAVCAN Servo 1 Output Function. + +Select what should be output on UAVCAN Servo 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8440,18 +8308,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_FUNC2 (`INT32`) {#UAVCAN_EC_FUNC2} - -UAVCAN ESC 2 Output Function. +### UAVCAN_SV_FUNC2 (`INT32`) {#UAVCAN_SV_FUNC2} -Select what should be output on UAVCAN ESC 2. -The default failsafe value is set according to the selected function: +UAVCAN Servo 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN Servo 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8511,18 +8372,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_FUNC3 (`INT32`) {#UAVCAN_EC_FUNC3} - -UAVCAN ESC 3 Output Function. +### UAVCAN_SV_FUNC3 (`INT32`) {#UAVCAN_SV_FUNC3} -Select what should be output on UAVCAN ESC 3. -The default failsafe value is set according to the selected function: +UAVCAN Servo 3 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN Servo 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8582,18 +8436,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_FUNC4 (`INT32`) {#UAVCAN_EC_FUNC4} - -UAVCAN ESC 4 Output Function. +### UAVCAN_SV_FUNC4 (`INT32`) {#UAVCAN_SV_FUNC4} -Select what should be output on UAVCAN ESC 4. -The default failsafe value is set according to the selected function: +UAVCAN Servo 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN Servo 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8653,18 +8500,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_FUNC5 (`INT32`) {#UAVCAN_EC_FUNC5} - -UAVCAN ESC 5 Output Function. +### UAVCAN_SV_FUNC5 (`INT32`) {#UAVCAN_SV_FUNC5} -Select what should be output on UAVCAN ESC 5. -The default failsafe value is set according to the selected function: +UAVCAN Servo 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN Servo 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8724,18 +8564,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_FUNC6 (`INT32`) {#UAVCAN_EC_FUNC6} - -UAVCAN ESC 6 Output Function. +### UAVCAN_SV_FUNC6 (`INT32`) {#UAVCAN_SV_FUNC6} -Select what should be output on UAVCAN ESC 6. -The default failsafe value is set according to the selected function: +UAVCAN Servo 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN Servo 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8795,18 +8628,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_FUNC7 (`INT32`) {#UAVCAN_EC_FUNC7} - -UAVCAN ESC 7 Output Function. +### UAVCAN_SV_FUNC7 (`INT32`) {#UAVCAN_SV_FUNC7} -Select what should be output on UAVCAN ESC 7. -The default failsafe value is set according to the selected function: +UAVCAN Servo 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN Servo 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8866,18 +8692,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_FUNC8 (`INT32`) {#UAVCAN_EC_FUNC8} - -UAVCAN ESC 8 Output Function. +### UAVCAN_SV_FUNC8 (`INT32`) {#UAVCAN_SV_FUNC8} -Select what should be output on UAVCAN ESC 8. -The default failsafe value is set according to the selected function: +UAVCAN Servo 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCAN Servo 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -8937,376 +8756,352 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_EC_MAX1 (`INT32`) {#UAVCAN_EC_MAX1} +### UAVCAN_SV_MAX1 (`INT32`) {#UAVCAN_SV_MAX1} -UAVCAN ESC 1 Maximum Value. +UAVCAN Servo 1 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MAX2 (`INT32`) {#UAVCAN_EC_MAX2} +### UAVCAN_SV_MAX2 (`INT32`) {#UAVCAN_SV_MAX2} -UAVCAN ESC 2 Maximum Value. +UAVCAN Servo 2 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MAX3 (`INT32`) {#UAVCAN_EC_MAX3} +### UAVCAN_SV_MAX3 (`INT32`) {#UAVCAN_SV_MAX3} -UAVCAN ESC 3 Maximum Value. +UAVCAN Servo 3 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MAX4 (`INT32`) {#UAVCAN_EC_MAX4} +### UAVCAN_SV_MAX4 (`INT32`) {#UAVCAN_SV_MAX4} -UAVCAN ESC 4 Maximum Value. +UAVCAN Servo 4 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MAX5 (`INT32`) {#UAVCAN_EC_MAX5} +### UAVCAN_SV_MAX5 (`INT32`) {#UAVCAN_SV_MAX5} -UAVCAN ESC 5 Maximum Value. +UAVCAN Servo 5 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MAX6 (`INT32`) {#UAVCAN_EC_MAX6} +### UAVCAN_SV_MAX6 (`INT32`) {#UAVCAN_SV_MAX6} -UAVCAN ESC 6 Maximum Value. +UAVCAN Servo 6 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MAX7 (`INT32`) {#UAVCAN_EC_MAX7} +### UAVCAN_SV_MAX7 (`INT32`) {#UAVCAN_SV_MAX7} -UAVCAN ESC 7 Maximum Value. +UAVCAN Servo 7 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MAX8 (`INT32`) {#UAVCAN_EC_MAX8} +### UAVCAN_SV_MAX8 (`INT32`) {#UAVCAN_SV_MAX8} -UAVCAN ESC 8 Maximum Value. +UAVCAN Servo 8 Maximum Value. Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 1000 | | 1000 | -### UAVCAN_EC_MIN1 (`INT32`) {#UAVCAN_EC_MIN1} +### UAVCAN_SV_MIN1 (`INT32`) {#UAVCAN_SV_MIN1} -UAVCAN ESC 1 Minimum Value. +UAVCAN Servo 1 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_MIN2 (`INT32`) {#UAVCAN_EC_MIN2} +### UAVCAN_SV_MIN2 (`INT32`) {#UAVCAN_SV_MIN2} -UAVCAN ESC 2 Minimum Value. +UAVCAN Servo 2 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_MIN3 (`INT32`) {#UAVCAN_EC_MIN3} +### UAVCAN_SV_MIN3 (`INT32`) {#UAVCAN_SV_MIN3} -UAVCAN ESC 3 Minimum Value. +UAVCAN Servo 3 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_MIN4 (`INT32`) {#UAVCAN_EC_MIN4} +### UAVCAN_SV_MIN4 (`INT32`) {#UAVCAN_SV_MIN4} -UAVCAN ESC 4 Minimum Value. +UAVCAN Servo 4 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_MIN5 (`INT32`) {#UAVCAN_EC_MIN5} +### UAVCAN_SV_MIN5 (`INT32`) {#UAVCAN_SV_MIN5} -UAVCAN ESC 5 Minimum Value. +UAVCAN Servo 5 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_MIN6 (`INT32`) {#UAVCAN_EC_MIN6} +### UAVCAN_SV_MIN6 (`INT32`) {#UAVCAN_SV_MIN6} -UAVCAN ESC 6 Minimum Value. +UAVCAN Servo 6 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_MIN7 (`INT32`) {#UAVCAN_EC_MIN7} +### UAVCAN_SV_MIN7 (`INT32`) {#UAVCAN_SV_MIN7} -UAVCAN ESC 7 Minimum Value. +UAVCAN Servo 7 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_MIN8 (`INT32`) {#UAVCAN_EC_MIN8} +### UAVCAN_SV_MIN8 (`INT32`) {#UAVCAN_SV_MIN8} -UAVCAN ESC 8 Minimum Value. +UAVCAN Servo 8 Minimum Value. Minimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 1000 | | 0 | -### UAVCAN_EC_REV (`INT32`) {#UAVCAN_EC_REV} +### UAVCAN_SV_REV (`INT32`) {#UAVCAN_SV_REV} Reverse Output Range for UAVCAN. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +Allows to reverse the output range for each channel. Note: this is only useful for servos. **Bitmask:** -- `0`: UAVCAN ESC 1 -- `1`: UAVCAN ESC 2 -- `2`: UAVCAN ESC 3 -- `3`: UAVCAN ESC 4 -- `4`: UAVCAN ESC 5 -- `5`: UAVCAN ESC 6 -- `6`: UAVCAN ESC 7 -- `7`: UAVCAN ESC 8 +- `0`: UAVCAN Servo 1 +- `1`: UAVCAN Servo 2 +- `2`: UAVCAN Servo 3 +- `3`: UAVCAN Servo 4 +- `4`: UAVCAN Servo 5 +- `5`: UAVCAN Servo 6 +- `6`: UAVCAN Servo 7 +- `7`: UAVCAN Servo 8 | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 255 | | 0 | -### UAVCAN_SV_DIS1 (`INT32`) {#UAVCAN_SV_DIS1} +### UCAN1_ESC_FAIL1 (`INT32`) {#UCAN1_ESC_FAIL1} -UAVCAN Servo 1 Disarmed Value. +UAVCANv1 ESC 1 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_DIS2 (`INT32`) {#UAVCAN_SV_DIS2} +### UCAN1_ESC_FAIL10 (`INT32`) {#UCAN1_ESC_FAIL10} -UAVCAN Servo 2 Disarmed Value. +UAVCANv1 ESC 10 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC10). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_DIS3 (`INT32`) {#UAVCAN_SV_DIS3} +### UCAN1_ESC_FAIL11 (`INT32`) {#UCAN1_ESC_FAIL11} -UAVCAN Servo 3 Disarmed Value. +UAVCANv1 ESC 11 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC11). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_DIS4 (`INT32`) {#UAVCAN_SV_DIS4} +### UCAN1_ESC_FAIL12 (`INT32`) {#UCAN1_ESC_FAIL12} -UAVCAN Servo 4 Disarmed Value. +UAVCANv1 ESC 12 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC12). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_DIS5 (`INT32`) {#UAVCAN_SV_DIS5} +### UCAN1_ESC_FAIL13 (`INT32`) {#UCAN1_ESC_FAIL13} -UAVCAN Servo 5 Disarmed Value. +UAVCANv1 ESC 13 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC13). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_DIS6 (`INT32`) {#UAVCAN_SV_DIS6} +### UCAN1_ESC_FAIL14 (`INT32`) {#UCAN1_ESC_FAIL14} -UAVCAN Servo 6 Disarmed Value. +UAVCANv1 ESC 14 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC14). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_DIS7 (`INT32`) {#UAVCAN_SV_DIS7} +### UCAN1_ESC_FAIL15 (`INT32`) {#UCAN1_ESC_FAIL15} -UAVCAN Servo 7 Disarmed Value. +UAVCANv1 ESC 15 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC15). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_DIS8 (`INT32`) {#UAVCAN_SV_DIS8} +### UCAN1_ESC_FAIL16 (`INT32`) {#UCAN1_ESC_FAIL16} -UAVCAN Servo 8 Disarmed Value. +UAVCANv1 ESC 16 Failsafe Value. -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC16). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 500 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL1 (`INT32`) {#UAVCAN_SV_FAIL1} +### UCAN1_ESC_FAIL2 (`INT32`) {#UCAN1_ESC_FAIL2} -UAVCAN Servo 1 Failsafe Value. +UAVCANv1 ESC 2 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC1). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL2 (`INT32`) {#UAVCAN_SV_FAIL2} +### UCAN1_ESC_FAIL3 (`INT32`) {#UCAN1_ESC_FAIL3} -UAVCAN Servo 2 Failsafe Value. +UAVCANv1 ESC 3 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC2). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL3 (`INT32`) {#UAVCAN_SV_FAIL3} +### UCAN1_ESC_FAIL4 (`INT32`) {#UCAN1_ESC_FAIL4} -UAVCAN Servo 3 Failsafe Value. +UAVCANv1 ESC 4 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC3). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL4 (`INT32`) {#UAVCAN_SV_FAIL4} +### UCAN1_ESC_FAIL5 (`INT32`) {#UCAN1_ESC_FAIL5} -UAVCAN Servo 4 Failsafe Value. +UAVCANv1 ESC 5 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC4). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC5). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL5 (`INT32`) {#UAVCAN_SV_FAIL5} +### UCAN1_ESC_FAIL6 (`INT32`) {#UCAN1_ESC_FAIL6} -UAVCAN Servo 5 Failsafe Value. +UAVCANv1 ESC 6 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC5). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC6). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL6 (`INT32`) {#UAVCAN_SV_FAIL6} +### UCAN1_ESC_FAIL7 (`INT32`) {#UCAN1_ESC_FAIL7} -UAVCAN Servo 6 Failsafe Value. +UAVCANv1 ESC 7 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC6). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC7). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL7 (`INT32`) {#UAVCAN_SV_FAIL7} +### UCAN1_ESC_FAIL8 (`INT32`) {#UCAN1_ESC_FAIL8} -UAVCAN Servo 7 Failsafe Value. +UAVCANv1 ESC 8 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC7). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC8). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | +| | -1 | 8191 | | -1 | -### UAVCAN_SV_FAIL8 (`INT32`) {#UAVCAN_SV_FAIL8} +### UCAN1_ESC_FAIL9 (`INT32`) {#UCAN1_ESC_FAIL9} -UAVCAN Servo 8 Failsafe Value. +UAVCANv1 ESC 9 Failsafe Value. -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UAVCAN_SV_FUNC8). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC9). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 1000 | | -1 | - -### UAVCAN_SV_FUNC1 (`INT32`) {#UAVCAN_SV_FUNC1} +| | -1 | 8191 | | -1 | -UAVCAN Servo 1 Output Function. +### UCAN1_ESC_FUNC1 (`INT32`) {#UCAN1_ESC_FUNC1} -Select what should be output on UAVCAN Servo 1. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 1 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9366,18 +9161,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_FUNC2 (`INT32`) {#UAVCAN_SV_FUNC2} - -UAVCAN Servo 2 Output Function. +### UCAN1_ESC_FUNC10 (`INT32`) {#UCAN1_ESC_FUNC10} -Select what should be output on UAVCAN Servo 2. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 10 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 10. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9437,18 +9225,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_FUNC3 (`INT32`) {#UAVCAN_SV_FUNC3} - -UAVCAN Servo 3 Output Function. +### UCAN1_ESC_FUNC11 (`INT32`) {#UCAN1_ESC_FUNC11} -Select what should be output on UAVCAN Servo 3. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 11 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 11. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9508,18 +9289,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_FUNC4 (`INT32`) {#UAVCAN_SV_FUNC4} - -UAVCAN Servo 4 Output Function. +### UCAN1_ESC_FUNC12 (`INT32`) {#UCAN1_ESC_FUNC12} -Select what should be output on UAVCAN Servo 4. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 12 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 12. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9579,18 +9353,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_FUNC5 (`INT32`) {#UAVCAN_SV_FUNC5} - -UAVCAN Servo 5 Output Function. +### UCAN1_ESC_FUNC13 (`INT32`) {#UCAN1_ESC_FUNC13} -Select what should be output on UAVCAN Servo 5. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 13 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 13. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9650,18 +9417,75 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_FUNC6 (`INT32`) {#UAVCAN_SV_FUNC6} +### UCAN1_ESC_FUNC14 (`INT32`) {#UCAN1_ESC_FUNC14} -UAVCAN Servo 6 Output Function. +UAVCANv1 ESC 14 Output Function. + +Select what should be output on UAVCANv1 ESC 14. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | | | 0 | + +### UCAN1_ESC_FUNC15 (`INT32`) {#UCAN1_ESC_FUNC15} -Select what should be output on UAVCAN Servo 6. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 15 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 15. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9721,18 +9545,75 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_FUNC7 (`INT32`) {#UAVCAN_SV_FUNC7} +### UCAN1_ESC_FUNC16 (`INT32`) {#UCAN1_ESC_FUNC16} -UAVCAN Servo 7 Output Function. +UAVCANv1 ESC 16 Output Function. + +Select what should be output on UAVCANv1 ESC 16. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | | | 0 | + +### UCAN1_ESC_FUNC2 (`INT32`) {#UCAN1_ESC_FUNC2} -Select what should be output on UAVCAN Servo 7. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9792,18 +9673,75 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_FUNC8 (`INT32`) {#UAVCAN_SV_FUNC8} +### UCAN1_ESC_FUNC3 (`INT32`) {#UCAN1_ESC_FUNC3} -UAVCAN Servo 8 Output Function. +UAVCANv1 ESC 3 Output Function. + +Select what should be output on UAVCANv1 ESC 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | | | 0 | + +### UCAN1_ESC_FUNC4 (`INT32`) {#UCAN1_ESC_FUNC4} -Select what should be output on UAVCAN Servo 8. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -9863,376 +9801,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UAVCAN_SV_MAX1 (`INT32`) {#UAVCAN_SV_MAX1} - -UAVCAN Servo 1 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MAX2 (`INT32`) {#UAVCAN_SV_MAX2} - -UAVCAN Servo 2 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MAX3 (`INT32`) {#UAVCAN_SV_MAX3} - -UAVCAN Servo 3 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MAX4 (`INT32`) {#UAVCAN_SV_MAX4} - -UAVCAN Servo 4 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MAX5 (`INT32`) {#UAVCAN_SV_MAX5} - -UAVCAN Servo 5 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MAX6 (`INT32`) {#UAVCAN_SV_MAX6} - -UAVCAN Servo 6 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MAX7 (`INT32`) {#UAVCAN_SV_MAX7} - -UAVCAN Servo 7 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MAX8 (`INT32`) {#UAVCAN_SV_MAX8} - -UAVCAN Servo 8 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 1000 | - -### UAVCAN_SV_MIN1 (`INT32`) {#UAVCAN_SV_MIN1} - -UAVCAN Servo 1 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_MIN2 (`INT32`) {#UAVCAN_SV_MIN2} - -UAVCAN Servo 2 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_MIN3 (`INT32`) {#UAVCAN_SV_MIN3} - -UAVCAN Servo 3 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_MIN4 (`INT32`) {#UAVCAN_SV_MIN4} - -UAVCAN Servo 4 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_MIN5 (`INT32`) {#UAVCAN_SV_MIN5} - -UAVCAN Servo 5 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_MIN6 (`INT32`) {#UAVCAN_SV_MIN6} - -UAVCAN Servo 6 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_MIN7 (`INT32`) {#UAVCAN_SV_MIN7} - -UAVCAN Servo 7 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_MIN8 (`INT32`) {#UAVCAN_SV_MIN8} - -UAVCAN Servo 8 Minimum Value. - -Minimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1000 | | 0 | - -### UAVCAN_SV_REV (`INT32`) {#UAVCAN_SV_REV} - -Reverse Output Range for UAVCAN. - -Allows to reverse the output range for each channel. -Note: this is only useful for servos. - -**Bitmask:** - -- `0`: UAVCAN Servo 1 -- `1`: UAVCAN Servo 2 -- `2`: UAVCAN Servo 3 -- `3`: UAVCAN Servo 4 -- `4`: UAVCAN Servo 5 -- `5`: UAVCAN Servo 6 -- `6`: UAVCAN Servo 7 -- `7`: UAVCAN Servo 8 - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 255 | | 0 | - -### UCAN1_ESC_FAIL1 (`INT32`) {#UCAN1_ESC_FAIL1} - -UAVCANv1 ESC 1 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC1). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL10 (`INT32`) {#UCAN1_ESC_FAIL10} - -UAVCANv1 ESC 10 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC10). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL11 (`INT32`) {#UCAN1_ESC_FAIL11} - -UAVCANv1 ESC 11 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC11). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL12 (`INT32`) {#UCAN1_ESC_FAIL12} - -UAVCANv1 ESC 12 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC12). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL13 (`INT32`) {#UCAN1_ESC_FAIL13} - -UAVCANv1 ESC 13 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC13). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL14 (`INT32`) {#UCAN1_ESC_FAIL14} - -UAVCANv1 ESC 14 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC14). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL15 (`INT32`) {#UCAN1_ESC_FAIL15} - -UAVCANv1 ESC 15 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC15). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL16 (`INT32`) {#UCAN1_ESC_FAIL16} - -UAVCANv1 ESC 16 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC16). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL2 (`INT32`) {#UCAN1_ESC_FAIL2} - -UAVCANv1 ESC 2 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC2). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL3 (`INT32`) {#UCAN1_ESC_FAIL3} - -UAVCANv1 ESC 3 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC3). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL4 (`INT32`) {#UCAN1_ESC_FAIL4} - -UAVCANv1 ESC 4 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC4). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL5 (`INT32`) {#UCAN1_ESC_FAIL5} - -UAVCANv1 ESC 5 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC5). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL6 (`INT32`) {#UCAN1_ESC_FAIL6} - -UAVCANv1 ESC 6 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC6). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL7 (`INT32`) {#UCAN1_ESC_FAIL7} - -UAVCANv1 ESC 7 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC7). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL8 (`INT32`) {#UCAN1_ESC_FAIL8} - -UAVCANv1 ESC 8 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC8). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FAIL9 (`INT32`) {#UCAN1_ESC_FAIL9} - -UAVCANv1 ESC 9 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see UCAN1_ESC_FUNC9). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 8191 | | -1 | - -### UCAN1_ESC_FUNC1 (`INT32`) {#UCAN1_ESC_FUNC1} - -UAVCANv1 ESC 1 Output Function. +### UCAN1_ESC_FUNC5 (`INT32`) {#UCAN1_ESC_FUNC5} -Select what should be output on UAVCANv1 ESC 1. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -10292,18 +9865,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC10 (`INT32`) {#UCAN1_ESC_FUNC10} - -UAVCANv1 ESC 10 Output Function. +### UCAN1_ESC_FUNC6 (`INT32`) {#UCAN1_ESC_FUNC6} -Select what should be output on UAVCANv1 ESC 10. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -10363,18 +9929,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC11 (`INT32`) {#UCAN1_ESC_FUNC11} - -UAVCANv1 ESC 11 Output Function. +### UCAN1_ESC_FUNC7 (`INT32`) {#UCAN1_ESC_FUNC7} -Select what should be output on UAVCANv1 ESC 11. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -10434,18 +9993,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC12 (`INT32`) {#UCAN1_ESC_FUNC12} - -UAVCANv1 ESC 12 Output Function. +### UCAN1_ESC_FUNC8 (`INT32`) {#UCAN1_ESC_FUNC8} -Select what should be output on UAVCANv1 ESC 12. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -10505,18 +10057,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC13 (`INT32`) {#UCAN1_ESC_FUNC13} - -UAVCANv1 ESC 13 Output Function. +### UCAN1_ESC_FUNC9 (`INT32`) {#UCAN1_ESC_FUNC9} -Select what should be output on UAVCANv1 ESC 13. -The default failsafe value is set according to the selected function: +UAVCANv1 ESC 9 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on UAVCANv1 ESC 9. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -10576,184 +10121,384 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC14 (`INT32`) {#UCAN1_ESC_FUNC14} +### UCAN1_ESC_MAX1 (`INT32`) {#UCAN1_ESC_MAX1} -UAVCANv1 ESC 14 Output Function. +UAVCANv1 ESC 1 Maximum Value. -Select what should be output on UAVCANv1 ESC 14. -The default failsafe value is set according to the selected function: +Maxmimum output value (when not disarmed). -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | -**Values:** +### UCAN1_ESC_MAX10 (`INT32`) {#UCAN1_ESC_MAX10} -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter +UAVCANv1 ESC 10 Maximum Value. + +Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | +| | 0 | 8191 | | 8191 | -### UCAN1_ESC_FUNC15 (`INT32`) {#UCAN1_ESC_FUNC15} +### UCAN1_ESC_MAX11 (`INT32`) {#UCAN1_ESC_MAX11} -UAVCANv1 ESC 15 Output Function. +UAVCANv1 ESC 11 Maximum Value. -Select what should be output on UAVCANv1 ESC 15. -The default failsafe value is set according to the selected function: +Maxmimum output value (when not disarmed). -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | -**Values:** +### UCAN1_ESC_MAX12 (`INT32`) {#UCAN1_ESC_MAX12} -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter +UAVCANv1 ESC 12 Maximum Value. + +Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | +| | 0 | 8191 | | 8191 | -### UCAN1_ESC_FUNC16 (`INT32`) {#UCAN1_ESC_FUNC16} +### UCAN1_ESC_MAX13 (`INT32`) {#UCAN1_ESC_MAX13} -UAVCANv1 ESC 16 Output Function. +UAVCANv1 ESC 13 Maximum Value. -Select what should be output on UAVCANv1 ESC 16. -The default failsafe value is set according to the selected function: +Maxmimum output value (when not disarmed). -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | -**Values:** +### UCAN1_ESC_MAX14 (`INT32`) {#UCAN1_ESC_MAX14} -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 +UAVCANv1 ESC 14 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX15 (`INT32`) {#UCAN1_ESC_MAX15} + +UAVCANv1 ESC 15 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX16 (`INT32`) {#UCAN1_ESC_MAX16} + +UAVCANv1 ESC 16 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX2 (`INT32`) {#UCAN1_ESC_MAX2} + +UAVCANv1 ESC 2 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX3 (`INT32`) {#UCAN1_ESC_MAX3} + +UAVCANv1 ESC 3 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX4 (`INT32`) {#UCAN1_ESC_MAX4} + +UAVCANv1 ESC 4 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX5 (`INT32`) {#UCAN1_ESC_MAX5} + +UAVCANv1 ESC 5 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX6 (`INT32`) {#UCAN1_ESC_MAX6} + +UAVCANv1 ESC 6 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX7 (`INT32`) {#UCAN1_ESC_MAX7} + +UAVCANv1 ESC 7 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX8 (`INT32`) {#UCAN1_ESC_MAX8} + +UAVCANv1 ESC 8 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MAX9 (`INT32`) {#UCAN1_ESC_MAX9} + +UAVCANv1 ESC 9 Maximum Value. + +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 8191 | + +### UCAN1_ESC_MIN1 (`INT32`) {#UCAN1_ESC_MIN1} + +UAVCANv1 ESC 1 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN10 (`INT32`) {#UCAN1_ESC_MIN10} + +UAVCANv1 ESC 10 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN11 (`INT32`) {#UCAN1_ESC_MIN11} + +UAVCANv1 ESC 11 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN12 (`INT32`) {#UCAN1_ESC_MIN12} + +UAVCANv1 ESC 12 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN13 (`INT32`) {#UCAN1_ESC_MIN13} + +UAVCANv1 ESC 13 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN14 (`INT32`) {#UCAN1_ESC_MIN14} + +UAVCANv1 ESC 14 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN15 (`INT32`) {#UCAN1_ESC_MIN15} + +UAVCANv1 ESC 15 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN16 (`INT32`) {#UCAN1_ESC_MIN16} + +UAVCANv1 ESC 16 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN2 (`INT32`) {#UCAN1_ESC_MIN2} + +UAVCANv1 ESC 2 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN3 (`INT32`) {#UCAN1_ESC_MIN3} + +UAVCANv1 ESC 3 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN4 (`INT32`) {#UCAN1_ESC_MIN4} + +UAVCANv1 ESC 4 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN5 (`INT32`) {#UCAN1_ESC_MIN5} + +UAVCANv1 ESC 5 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN6 (`INT32`) {#UCAN1_ESC_MIN6} + +UAVCANv1 ESC 6 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN7 (`INT32`) {#UCAN1_ESC_MIN7} + +UAVCANv1 ESC 7 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN8 (`INT32`) {#UCAN1_ESC_MIN8} + +UAVCANv1 ESC 8 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_MIN9 (`INT32`) {#UCAN1_ESC_MIN9} + +UAVCANv1 ESC 9 Minimum Value. + +Minimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 8191 | | 1 | + +### UCAN1_ESC_REV (`INT32`) {#UCAN1_ESC_REV} + +Reverse Output Range for UAVCANv1. + +Allows to reverse the output range for each channel. Note: this is only useful for servos. + +**Bitmask:** + +- `0`: UAVCANv1 ESC 1 +- `1`: UAVCANv1 ESC 2 +- `2`: UAVCANv1 ESC 3 +- `3`: UAVCANv1 ESC 4 +- `4`: UAVCANv1 ESC 5 +- `5`: UAVCANv1 ESC 6 +- `6`: UAVCANv1 ESC 7 +- `7`: UAVCANv1 ESC 8 +- `8`: UAVCANv1 ESC 9 +- `9`: UAVCANv1 ESC 10 +- `10`: UAVCANv1 ESC 11 +- `11`: UAVCANv1 ESC 12 +- `12`: UAVCANv1 ESC 13 +- `13`: UAVCANv1 ESC 14 +- `14`: UAVCANv1 ESC 15 +- `15`: UAVCANv1 ESC 16 + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 65535 | | 0 | + +### VOXL2_IO_FUNC1 (`INT32`) {#VOXL2_IO_FUNC1} + +VOXL2 IO Output PWM Channel 1 Output Function. + +Select what should be output on VOXL2 IO Output PWM Channel 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 - `207`: Servo 7 - `208`: Servo 8 - `301`: Peripheral via Actuator Set 1 @@ -10789,18 +10534,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC2 (`INT32`) {#UCAN1_ESC_FUNC2} - -UAVCANv1 ESC 2 Output Function. +### VOXL2_IO_FUNC2 (`INT32`) {#VOXL2_IO_FUNC2} -Select what should be output on UAVCANv1 ESC 2. -The default failsafe value is set according to the selected function: +VOXL2 IO Output PWM Channel 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL2 IO Output PWM Channel 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -10860,18 +10598,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC3 (`INT32`) {#UCAN1_ESC_FUNC3} - -UAVCANv1 ESC 3 Output Function. +### VOXL2_IO_FUNC3 (`INT32`) {#VOXL2_IO_FUNC3} -Select what should be output on UAVCANv1 ESC 3. -The default failsafe value is set according to the selected function: +VOXL2 IO Output PWM Channel 3 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL2 IO Output PWM Channel 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -10931,18 +10662,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC4 (`INT32`) {#UCAN1_ESC_FUNC4} - -UAVCANv1 ESC 4 Output Function. +### VOXL2_IO_FUNC4 (`INT32`) {#VOXL2_IO_FUNC4} -Select what should be output on UAVCANv1 ESC 4. -The default failsafe value is set according to the selected function: +VOXL2 IO Output PWM Channel 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL2 IO Output PWM Channel 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11002,18 +10726,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC5 (`INT32`) {#UCAN1_ESC_FUNC5} - -UAVCANv1 ESC 5 Output Function. +### VOXL2_IO_FUNC5 (`INT32`) {#VOXL2_IO_FUNC5} -Select what should be output on UAVCANv1 ESC 5. -The default failsafe value is set according to the selected function: +VOXL2 IO Output PWM Channel 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL2 IO Output PWM Channel 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11073,18 +10790,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC6 (`INT32`) {#UCAN1_ESC_FUNC6} - -UAVCANv1 ESC 6 Output Function. +### VOXL2_IO_FUNC6 (`INT32`) {#VOXL2_IO_FUNC6} -Select what should be output on UAVCANv1 ESC 6. -The default failsafe value is set according to the selected function: +VOXL2 IO Output PWM Channel 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL2 IO Output PWM Channel 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11144,18 +10854,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC7 (`INT32`) {#UCAN1_ESC_FUNC7} - -UAVCANv1 ESC 7 Output Function. +### VOXL2_IO_FUNC7 (`INT32`) {#VOXL2_IO_FUNC7} -Select what should be output on UAVCANv1 ESC 7. -The default failsafe value is set according to the selected function: +VOXL2 IO Output PWM Channel 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL2 IO Output PWM Channel 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11215,18 +10918,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC8 (`INT32`) {#UCAN1_ESC_FUNC8} - -UAVCANv1 ESC 8 Output Function. +### VOXL2_IO_FUNC8 (`INT32`) {#VOXL2_IO_FUNC8} -Select what should be output on UAVCANv1 ESC 8. -The default failsafe value is set according to the selected function: +VOXL2 IO Output PWM Channel 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL2 IO Output PWM Channel 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11286,18 +10982,32 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_FUNC9 (`INT32`) {#UCAN1_ESC_FUNC9} +### VOXL2_IO_REV (`INT32`) {#VOXL2_IO_REV} -UAVCANv1 ESC 9 Output Function. +Reverse Output Range for VOXL2 IO Output. + +Allows to reverse the output range for each channel. Note: this is only useful for servos. + +**Bitmask:** + +- `0`: VOXL2 IO Output PWM Channel 1 +- `1`: VOXL2 IO Output PWM Channel 2 +- `2`: VOXL2 IO Output PWM Channel 3 +- `3`: VOXL2 IO Output PWM Channel 4 +- `4`: VOXL2 IO Output PWM Channel 5 +- `5`: VOXL2 IO Output PWM Channel 6 +- `6`: VOXL2 IO Output PWM Channel 7 +- `7`: VOXL2 IO Output PWM Channel 8 + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 255 | | 0 | + +### VOXL_ESC_FUNC1 (`INT32`) {#VOXL_ESC_FUNC1} -Select what should be output on UAVCANv1 ESC 9. -The default failsafe value is set according to the selected function: +VOXL ESC Output ESC 1 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on VOXL ESC Output ESC 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11357,368 +11067,540 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### UCAN1_ESC_MAX1 (`INT32`) {#UCAN1_ESC_MAX1} - -UAVCANv1 ESC 1 Maximum Value. - -Maxmimum output value (when not disarmed). +### VOXL_ESC_FUNC2 (`INT32`) {#VOXL_ESC_FUNC2} -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +VOXL ESC Output ESC 2 Output Function. -### UCAN1_ESC_MAX10 (`INT32`) {#UCAN1_ESC_MAX10} +Select what should be output on VOXL ESC Output ESC 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest -UAVCANv1 ESC 10 Maximum Value. +**Values:** -Maxmimum output value (when not disarmed). +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | | | | 0 | -### UCAN1_ESC_MAX11 (`INT32`) {#UCAN1_ESC_MAX11} +### VOXL_ESC_FUNC3 (`INT32`) {#VOXL_ESC_FUNC3} -UAVCANv1 ESC 11 Maximum Value. +VOXL ESC Output ESC 3 Output Function. -Maxmimum output value (when not disarmed). +Select what should be output on VOXL ESC Output ESC 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | | | | 0 | -### UCAN1_ESC_MAX12 (`INT32`) {#UCAN1_ESC_MAX12} +### VOXL_ESC_FUNC4 (`INT32`) {#VOXL_ESC_FUNC4} -UAVCANv1 ESC 12 Maximum Value. +VOXL ESC Output ESC 4 Output Function. -Maxmimum output value (when not disarmed). +Select what should be output on VOXL ESC Output ESC 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest + +**Values:** + +- `0`: Disabled +- `1`: Constant Min +- `2`: Constant Max +- `101`: Motor 1 +- `102`: Motor 2 +- `103`: Motor 3 +- `104`: Motor 4 +- `105`: Motor 5 +- `106`: Motor 6 +- `107`: Motor 7 +- `108`: Motor 8 +- `109`: Motor 9 +- `110`: Motor 10 +- `111`: Motor 11 +- `112`: Motor 12 +- `201`: Servo 1 +- `202`: Servo 2 +- `203`: Servo 3 +- `204`: Servo 4 +- `205`: Servo 5 +- `206`: Servo 6 +- `207`: Servo 7 +- `208`: Servo 8 +- `301`: Peripheral via Actuator Set 1 +- `302`: Peripheral via Actuator Set 2 +- `303`: Peripheral via Actuator Set 3 +- `304`: Peripheral via Actuator Set 4 +- `305`: Peripheral via Actuator Set 5 +- `306`: Peripheral via Actuator Set 6 +- `400`: Landing Gear +- `401`: Parachute +- `402`: RC Roll +- `403`: RC Pitch +- `404`: RC Throttle +- `405`: RC Yaw +- `406`: RC Flaps +- `407`: RC AUX 1 +- `408`: RC AUX 2 +- `409`: RC AUX 3 +- `410`: RC AUX 4 +- `411`: RC AUX 5 +- `412`: RC AUX 6 +- `420`: Gimbal Roll +- `421`: Gimbal Pitch +- `422`: Gimbal Yaw +- `430`: Gripper +- `440`: Landing Gear Wheel +- `450`: IC Engine Ignition +- `451`: IC Engine Throttle +- `452`: IC Engine Choke +- `453`: IC Engine Starter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | | | | 0 | -### UCAN1_ESC_MAX13 (`INT32`) {#UCAN1_ESC_MAX13} +### VOXL_ESC_REV (`INT32`) {#VOXL_ESC_REV} -UAVCANv1 ESC 13 Maximum Value. +Reverse Output Range for VOXL ESC Output. -Maxmimum output value (when not disarmed). +Allows to reverse the output range for each channel. Note: this is only useful for servos. + +**Bitmask:** + +- `0`: VOXL ESC Output ESC 1 +- `1`: VOXL ESC Output ESC 2 +- `2`: VOXL ESC Output ESC 3 +- `3`: VOXL ESC Output ESC 4 | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 15 | | 0 | -### UCAN1_ESC_MAX14 (`INT32`) {#UCAN1_ESC_MAX14} +### VTQ_IO_DIS0 (`INT32`) {#VTQ_IO_DIS0} -UAVCANv1 ESC 14 Maximum Value. +Vertiq IO CVI 0 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX15 (`INT32`) {#UCAN1_ESC_MAX15} +### VTQ_IO_DIS1 (`INT32`) {#VTQ_IO_DIS1} -UAVCANv1 ESC 15 Maximum Value. +Vertiq IO CVI 1 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX16 (`INT32`) {#UCAN1_ESC_MAX16} +### VTQ_IO_DIS10 (`INT32`) {#VTQ_IO_DIS10} -UAVCANv1 ESC 16 Maximum Value. +Vertiq IO CVI 10 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX2 (`INT32`) {#UCAN1_ESC_MAX2} +### VTQ_IO_DIS11 (`INT32`) {#VTQ_IO_DIS11} -UAVCANv1 ESC 2 Maximum Value. +Vertiq IO CVI 11 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX3 (`INT32`) {#UCAN1_ESC_MAX3} +### VTQ_IO_DIS12 (`INT32`) {#VTQ_IO_DIS12} -UAVCANv1 ESC 3 Maximum Value. +Vertiq IO CVI 12 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX4 (`INT32`) {#UCAN1_ESC_MAX4} +### VTQ_IO_DIS13 (`INT32`) {#VTQ_IO_DIS13} -UAVCANv1 ESC 4 Maximum Value. +Vertiq IO CVI 13 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX5 (`INT32`) {#UCAN1_ESC_MAX5} +### VTQ_IO_DIS14 (`INT32`) {#VTQ_IO_DIS14} -UAVCANv1 ESC 5 Maximum Value. +Vertiq IO CVI 14 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX6 (`INT32`) {#UCAN1_ESC_MAX6} +### VTQ_IO_DIS15 (`INT32`) {#VTQ_IO_DIS15} -UAVCANv1 ESC 6 Maximum Value. +Vertiq IO CVI 15 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX7 (`INT32`) {#UCAN1_ESC_MAX7} +### VTQ_IO_DIS2 (`INT32`) {#VTQ_IO_DIS2} -UAVCANv1 ESC 7 Maximum Value. +Vertiq IO CVI 2 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX8 (`INT32`) {#UCAN1_ESC_MAX8} +### VTQ_IO_DIS3 (`INT32`) {#VTQ_IO_DIS3} -UAVCANv1 ESC 8 Maximum Value. +Vertiq IO CVI 3 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MAX9 (`INT32`) {#UCAN1_ESC_MAX9} +### VTQ_IO_DIS4 (`INT32`) {#VTQ_IO_DIS4} -UAVCANv1 ESC 9 Maximum Value. +Vertiq IO CVI 4 Disarmed Value. -Maxmimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 8191 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MIN1 (`INT32`) {#UCAN1_ESC_MIN1} +### VTQ_IO_DIS5 (`INT32`) {#VTQ_IO_DIS5} -UAVCANv1 ESC 1 Minimum Value. +Vertiq IO CVI 5 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MIN10 (`INT32`) {#UCAN1_ESC_MIN10} +### VTQ_IO_DIS6 (`INT32`) {#VTQ_IO_DIS6} -UAVCANv1 ESC 10 Minimum Value. +Vertiq IO CVI 6 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MIN11 (`INT32`) {#UCAN1_ESC_MIN11} +### VTQ_IO_DIS7 (`INT32`) {#VTQ_IO_DIS7} -UAVCANv1 ESC 11 Minimum Value. +Vertiq IO CVI 7 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MIN12 (`INT32`) {#UCAN1_ESC_MIN12} +### VTQ_IO_DIS8 (`INT32`) {#VTQ_IO_DIS8} -UAVCANv1 ESC 12 Minimum Value. +Vertiq IO CVI 8 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MIN13 (`INT32`) {#UCAN1_ESC_MIN13} +### VTQ_IO_DIS9 (`INT32`) {#VTQ_IO_DIS9} -UAVCANv1 ESC 13 Minimum Value. +Vertiq IO CVI 9 Disarmed Value. -Minimum output value (when not disarmed). +This is the output value that is set when not armed. Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | 0 | 65535 | | 0 | -### UCAN1_ESC_MIN14 (`INT32`) {#UCAN1_ESC_MIN14} +### VTQ_IO_FAIL0 (`INT32`) {#VTQ_IO_FAIL0} -UAVCANv1 ESC 14 Minimum Value. +Vertiq IO CVI 0 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC0). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN15 (`INT32`) {#UCAN1_ESC_MIN15} +### VTQ_IO_FAIL1 (`INT32`) {#VTQ_IO_FAIL1} -UAVCANv1 ESC 15 Minimum Value. +Vertiq IO CVI 1 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC1). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN16 (`INT32`) {#UCAN1_ESC_MIN16} +### VTQ_IO_FAIL10 (`INT32`) {#VTQ_IO_FAIL10} -UAVCANv1 ESC 16 Minimum Value. +Vertiq IO CVI 10 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC10). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN2 (`INT32`) {#UCAN1_ESC_MIN2} +### VTQ_IO_FAIL11 (`INT32`) {#VTQ_IO_FAIL11} -UAVCANv1 ESC 2 Minimum Value. +Vertiq IO CVI 11 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC11). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN3 (`INT32`) {#UCAN1_ESC_MIN3} +### VTQ_IO_FAIL12 (`INT32`) {#VTQ_IO_FAIL12} -UAVCANv1 ESC 3 Minimum Value. +Vertiq IO CVI 12 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC12). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN4 (`INT32`) {#UCAN1_ESC_MIN4} +### VTQ_IO_FAIL13 (`INT32`) {#VTQ_IO_FAIL13} -UAVCANv1 ESC 4 Minimum Value. +Vertiq IO CVI 13 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC13). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN5 (`INT32`) {#UCAN1_ESC_MIN5} +### VTQ_IO_FAIL14 (`INT32`) {#VTQ_IO_FAIL14} -UAVCANv1 ESC 5 Minimum Value. +Vertiq IO CVI 14 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC14). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN6 (`INT32`) {#UCAN1_ESC_MIN6} +### VTQ_IO_FAIL15 (`INT32`) {#VTQ_IO_FAIL15} -UAVCANv1 ESC 6 Minimum Value. +Vertiq IO CVI 15 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC15). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN7 (`INT32`) {#UCAN1_ESC_MIN7} +### VTQ_IO_FAIL2 (`INT32`) {#VTQ_IO_FAIL2} -UAVCANv1 ESC 7 Minimum Value. +Vertiq IO CVI 2 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC2). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN8 (`INT32`) {#UCAN1_ESC_MIN8} +### VTQ_IO_FAIL3 (`INT32`) {#VTQ_IO_FAIL3} -UAVCANv1 ESC 8 Minimum Value. +Vertiq IO CVI 3 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC3). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_MIN9 (`INT32`) {#UCAN1_ESC_MIN9} +### VTQ_IO_FAIL4 (`INT32`) {#VTQ_IO_FAIL4} -UAVCANv1 ESC 9 Minimum Value. +Vertiq IO CVI 4 Failsafe Value. -Minimum output value (when not disarmed). +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC4). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8191 | | 1 | +| | -1 | 500 | | -1 | -### UCAN1_ESC_REV (`INT32`) {#UCAN1_ESC_REV} +### VTQ_IO_FAIL5 (`INT32`) {#VTQ_IO_FAIL5} -Reverse Output Range for UAVCANv1. +Vertiq IO CVI 5 Failsafe Value. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC5). -**Bitmask:** +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 500 | | -1 | -- `0`: UAVCANv1 ESC 1 -- `1`: UAVCANv1 ESC 2 -- `2`: UAVCANv1 ESC 3 -- `3`: UAVCANv1 ESC 4 -- `4`: UAVCANv1 ESC 5 -- `5`: UAVCANv1 ESC 6 -- `6`: UAVCANv1 ESC 7 -- `7`: UAVCANv1 ESC 8 -- `8`: UAVCANv1 ESC 9 -- `9`: UAVCANv1 ESC 10 -- `10`: UAVCANv1 ESC 11 -- `11`: UAVCANv1 ESC 12 -- `12`: UAVCANv1 ESC 13 -- `13`: UAVCANv1 ESC 14 -- `14`: UAVCANv1 ESC 15 -- `15`: UAVCANv1 ESC 16 +### VTQ_IO_FAIL6 (`INT32`) {#VTQ_IO_FAIL6} + +Vertiq IO CVI 6 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC6). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | +| | -1 | 500 | | -1 | -### VOXL2_IO_FUNC1 (`INT32`) {#VOXL2_IO_FUNC1} +### VTQ_IO_FAIL7 (`INT32`) {#VTQ_IO_FAIL7} -VOXL2 IO Output PWM Channel 1 Output Function. +Vertiq IO CVI 7 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC7). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 500 | | -1 | + +### VTQ_IO_FAIL8 (`INT32`) {#VTQ_IO_FAIL8} + +Vertiq IO CVI 8 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC8). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 500 | | -1 | + +### VTQ_IO_FAIL9 (`INT32`) {#VTQ_IO_FAIL9} + +Vertiq IO CVI 9 Failsafe Value. + +This is the output value that is set when in failsafe mode. When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC9). -Select what should be output on VOXL2 IO Output PWM Channel 1. -The default failsafe value is set according to the selected function: +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | -1 | 500 | | -1 | -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +### VTQ_IO_FUNC0 (`INT32`) {#VTQ_IO_FUNC0} + +Vertiq IO CVI 0 Output Function. + +Select what should be output on Vertiq IO CVI 0. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11778,18 +11660,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_FUNC2 (`INT32`) {#VOXL2_IO_FUNC2} - -VOXL2 IO Output PWM Channel 2 Output Function. +### VTQ_IO_FUNC1 (`INT32`) {#VTQ_IO_FUNC1} -Select what should be output on VOXL2 IO Output PWM Channel 2. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 1 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 1. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11849,18 +11724,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_FUNC3 (`INT32`) {#VOXL2_IO_FUNC3} - -VOXL2 IO Output PWM Channel 3 Output Function. +### VTQ_IO_FUNC10 (`INT32`) {#VTQ_IO_FUNC10} -Select what should be output on VOXL2 IO Output PWM Channel 3. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 10 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 10. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11920,18 +11788,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_FUNC4 (`INT32`) {#VOXL2_IO_FUNC4} - -VOXL2 IO Output PWM Channel 4 Output Function. +### VTQ_IO_FUNC11 (`INT32`) {#VTQ_IO_FUNC11} -Select what should be output on VOXL2 IO Output PWM Channel 4. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 11 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 11. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -11991,18 +11852,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_FUNC5 (`INT32`) {#VOXL2_IO_FUNC5} - -VOXL2 IO Output PWM Channel 5 Output Function. +### VTQ_IO_FUNC12 (`INT32`) {#VTQ_IO_FUNC12} -Select what should be output on VOXL2 IO Output PWM Channel 5. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 12 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 12. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12062,18 +11916,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_FUNC6 (`INT32`) {#VOXL2_IO_FUNC6} - -VOXL2 IO Output PWM Channel 6 Output Function. +### VTQ_IO_FUNC13 (`INT32`) {#VTQ_IO_FUNC13} -Select what should be output on VOXL2 IO Output PWM Channel 6. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 13 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 13. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12133,18 +11980,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_FUNC7 (`INT32`) {#VOXL2_IO_FUNC7} - -VOXL2 IO Output PWM Channel 7 Output Function. +### VTQ_IO_FUNC14 (`INT32`) {#VTQ_IO_FUNC14} -Select what should be output on VOXL2 IO Output PWM Channel 7. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 14 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 14. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12204,18 +12044,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_FUNC8 (`INT32`) {#VOXL2_IO_FUNC8} - -VOXL2 IO Output PWM Channel 8 Output Function. +### VTQ_IO_FUNC15 (`INT32`) {#VTQ_IO_FUNC15} -Select what should be output on VOXL2 IO Output PWM Channel 8. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 15 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 15. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12275,40 +12108,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL2_IO_REV (`INT32`) {#VOXL2_IO_REV} - -Reverse Output Range for VOXL2 IO Output. - -Allows to reverse the output range for each channel. -Note: this is only useful for servos. - -**Bitmask:** - -- `0`: VOXL2 IO Output PWM Channel 1 -- `1`: VOXL2 IO Output PWM Channel 2 -- `2`: VOXL2 IO Output PWM Channel 3 -- `3`: VOXL2 IO Output PWM Channel 4 -- `4`: VOXL2 IO Output PWM Channel 5 -- `5`: VOXL2 IO Output PWM Channel 6 -- `6`: VOXL2 IO Output PWM Channel 7 -- `7`: VOXL2 IO Output PWM Channel 8 - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 255 | | 0 | - -### VOXL_ESC_FUNC1 (`INT32`) {#VOXL_ESC_FUNC1} - -VOXL ESC Output ESC 1 Output Function. +### VTQ_IO_FUNC2 (`INT32`) {#VTQ_IO_FUNC2} -Select what should be output on VOXL ESC Output ESC 1. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 2 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 2. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12368,18 +12172,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL_ESC_FUNC2 (`INT32`) {#VOXL_ESC_FUNC2} - -VOXL ESC Output ESC 2 Output Function. +### VTQ_IO_FUNC3 (`INT32`) {#VTQ_IO_FUNC3} -Select what should be output on VOXL ESC Output ESC 2. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 3 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 3. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12439,18 +12236,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL_ESC_FUNC3 (`INT32`) {#VOXL_ESC_FUNC3} - -VOXL ESC Output ESC 3 Output Function. +### VTQ_IO_FUNC4 (`INT32`) {#VTQ_IO_FUNC4} -Select what should be output on VOXL ESC Output ESC 3. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 4 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 4. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12510,18 +12300,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL_ESC_FUNC4 (`INT32`) {#VOXL_ESC_FUNC4} - -VOXL ESC Output ESC 4 Output Function. +### VTQ_IO_FUNC5 (`INT32`) {#VTQ_IO_FUNC5} -Select what should be output on VOXL ESC Output ESC 4. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 5 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 5. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -12581,388 +12364,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VOXL_ESC_REV (`INT32`) {#VOXL_ESC_REV} - -Reverse Output Range for VOXL ESC Output. - -Allows to reverse the output range for each channel. -Note: this is only useful for servos. - -**Bitmask:** - -- `0`: VOXL ESC Output ESC 1 -- `1`: VOXL ESC Output ESC 2 -- `2`: VOXL ESC Output ESC 3 -- `3`: VOXL ESC Output ESC 4 - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 15 | | 0 | - -### VTQ_IO_DIS0 (`INT32`) {#VTQ_IO_DIS0} - -Vertiq IO CVI 0 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS1 (`INT32`) {#VTQ_IO_DIS1} - -Vertiq IO CVI 1 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS10 (`INT32`) {#VTQ_IO_DIS10} - -Vertiq IO CVI 10 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS11 (`INT32`) {#VTQ_IO_DIS11} - -Vertiq IO CVI 11 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS12 (`INT32`) {#VTQ_IO_DIS12} - -Vertiq IO CVI 12 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS13 (`INT32`) {#VTQ_IO_DIS13} - -Vertiq IO CVI 13 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS14 (`INT32`) {#VTQ_IO_DIS14} - -Vertiq IO CVI 14 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS15 (`INT32`) {#VTQ_IO_DIS15} - -Vertiq IO CVI 15 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS2 (`INT32`) {#VTQ_IO_DIS2} - -Vertiq IO CVI 2 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS3 (`INT32`) {#VTQ_IO_DIS3} - -Vertiq IO CVI 3 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS4 (`INT32`) {#VTQ_IO_DIS4} - -Vertiq IO CVI 4 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS5 (`INT32`) {#VTQ_IO_DIS5} - -Vertiq IO CVI 5 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS6 (`INT32`) {#VTQ_IO_DIS6} - -Vertiq IO CVI 6 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS7 (`INT32`) {#VTQ_IO_DIS7} - -Vertiq IO CVI 7 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS8 (`INT32`) {#VTQ_IO_DIS8} - -Vertiq IO CVI 8 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_DIS9 (`INT32`) {#VTQ_IO_DIS9} - -Vertiq IO CVI 9 Disarmed Value. - -This is the output value that is set when not armed. -Note that non-motor outputs might already be active in prearm state if COM_PREARM_MODE is set. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 0 | - -### VTQ_IO_FAIL0 (`INT32`) {#VTQ_IO_FAIL0} - -Vertiq IO CVI 0 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC0). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL1 (`INT32`) {#VTQ_IO_FAIL1} - -Vertiq IO CVI 1 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC1). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL10 (`INT32`) {#VTQ_IO_FAIL10} - -Vertiq IO CVI 10 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC10). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL11 (`INT32`) {#VTQ_IO_FAIL11} - -Vertiq IO CVI 11 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC11). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL12 (`INT32`) {#VTQ_IO_FAIL12} - -Vertiq IO CVI 12 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC12). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL13 (`INT32`) {#VTQ_IO_FAIL13} - -Vertiq IO CVI 13 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC13). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL14 (`INT32`) {#VTQ_IO_FAIL14} - -Vertiq IO CVI 14 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC14). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL15 (`INT32`) {#VTQ_IO_FAIL15} - -Vertiq IO CVI 15 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC15). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL2 (`INT32`) {#VTQ_IO_FAIL2} - -Vertiq IO CVI 2 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC2). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL3 (`INT32`) {#VTQ_IO_FAIL3} - -Vertiq IO CVI 3 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC3). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL4 (`INT32`) {#VTQ_IO_FAIL4} - -Vertiq IO CVI 4 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC4). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL5 (`INT32`) {#VTQ_IO_FAIL5} - -Vertiq IO CVI 5 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC5). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL6 (`INT32`) {#VTQ_IO_FAIL6} - -Vertiq IO CVI 6 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC6). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL7 (`INT32`) {#VTQ_IO_FAIL7} - -Vertiq IO CVI 7 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC7). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL8 (`INT32`) {#VTQ_IO_FAIL8} - -Vertiq IO CVI 8 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC8). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FAIL9 (`INT32`) {#VTQ_IO_FAIL9} - -Vertiq IO CVI 9 Failsafe Value. - -This is the output value that is set when in failsafe mode. -When set to -1 (default), the value depends on the function (see VTQ_IO_FUNC9). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | 500 | | -1 | - -### VTQ_IO_FUNC0 (`INT32`) {#VTQ_IO_FUNC0} - -Vertiq IO CVI 0 Output Function. +### VTQ_IO_FUNC6 (`INT32`) {#VTQ_IO_FUNC6} -Select what should be output on Vertiq IO CVI 0. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 6 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 6. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -13022,18 +12428,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VTQ_IO_FUNC1 (`INT32`) {#VTQ_IO_FUNC1} - -Vertiq IO CVI 1 Output Function. +### VTQ_IO_FUNC7 (`INT32`) {#VTQ_IO_FUNC7} -Select what should be output on Vertiq IO CVI 1. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 7 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 7. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -13093,18 +12492,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VTQ_IO_FUNC10 (`INT32`) {#VTQ_IO_FUNC10} - -Vertiq IO CVI 10 Output Function. +### VTQ_IO_FUNC8 (`INT32`) {#VTQ_IO_FUNC8} -Select what should be output on Vertiq IO CVI 10. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 8 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 8. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -13164,18 +12556,11 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VTQ_IO_FUNC11 (`INT32`) {#VTQ_IO_FUNC11} - -Vertiq IO CVI 11 Output Function. +### VTQ_IO_FUNC9 (`INT32`) {#VTQ_IO_FUNC9} -Select what should be output on Vertiq IO CVI 11. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 9 Output Function. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +Select what should be output on Vertiq IO CVI 9. The default failsafe value is set according to the selected function: - 'Min' for ConstantMin - 'Max' for ConstantMax - 'Max' for Parachute - ('Max'+'Min')/2 for Servos - 'Disarmed' for the rest **Values:** @@ -13235,903 +12620,51 @@ The default failsafe value is set according to the selected function: | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 0 | -### VTQ_IO_FUNC12 (`INT32`) {#VTQ_IO_FUNC12} +### VTQ_IO_MAX0 (`INT32`) {#VTQ_IO_MAX0} -Vertiq IO CVI 12 Output Function. +Vertiq IO CVI 0 Maximum Value. -Select what should be output on Vertiq IO CVI 12. -The default failsafe value is set according to the selected function: +Maxmimum output value (when not disarmed). -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 65535 | | 65535 | -**Values:** +### VTQ_IO_MAX1 (`INT32`) {#VTQ_IO_MAX1} -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter +Vertiq IO CVI 1 Maximum Value. + +Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | +| | 0 | 65535 | | 65535 | -### VTQ_IO_FUNC13 (`INT32`) {#VTQ_IO_FUNC13} +### VTQ_IO_MAX10 (`INT32`) {#VTQ_IO_MAX10} -Vertiq IO CVI 13 Output Function. +Vertiq IO CVI 10 Maximum Value. -Select what should be output on Vertiq IO CVI 13. -The default failsafe value is set according to the selected function: +Maxmimum output value (when not disarmed). + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 65535 | | 65535 | -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest +### VTQ_IO_MAX11 (`INT32`) {#VTQ_IO_MAX11} -**Values:** +Vertiq IO CVI 11 Maximum Value. -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter +Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC14 (`INT32`) {#VTQ_IO_FUNC14} +| | 0 | 65535 | | 65535 | -Vertiq IO CVI 14 Output Function. +### VTQ_IO_MAX12 (`INT32`) {#VTQ_IO_MAX12} -Select what should be output on Vertiq IO CVI 14. -The default failsafe value is set according to the selected function: +Vertiq IO CVI 12 Maximum Value. -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC15 (`INT32`) {#VTQ_IO_FUNC15} - -Vertiq IO CVI 15 Output Function. - -Select what should be output on Vertiq IO CVI 15. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC2 (`INT32`) {#VTQ_IO_FUNC2} - -Vertiq IO CVI 2 Output Function. - -Select what should be output on Vertiq IO CVI 2. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC3 (`INT32`) {#VTQ_IO_FUNC3} - -Vertiq IO CVI 3 Output Function. - -Select what should be output on Vertiq IO CVI 3. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC4 (`INT32`) {#VTQ_IO_FUNC4} - -Vertiq IO CVI 4 Output Function. - -Select what should be output on Vertiq IO CVI 4. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC5 (`INT32`) {#VTQ_IO_FUNC5} - -Vertiq IO CVI 5 Output Function. - -Select what should be output on Vertiq IO CVI 5. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC6 (`INT32`) {#VTQ_IO_FUNC6} - -Vertiq IO CVI 6 Output Function. - -Select what should be output on Vertiq IO CVI 6. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC7 (`INT32`) {#VTQ_IO_FUNC7} - -Vertiq IO CVI 7 Output Function. - -Select what should be output on Vertiq IO CVI 7. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC8 (`INT32`) {#VTQ_IO_FUNC8} - -Vertiq IO CVI 8 Output Function. - -Select what should be output on Vertiq IO CVI 8. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_FUNC9 (`INT32`) {#VTQ_IO_FUNC9} - -Vertiq IO CVI 9 Output Function. - -Select what should be output on Vertiq IO CVI 9. -The default failsafe value is set according to the selected function: - -- 'Min' for ConstantMin -- 'Max' for ConstantMax -- 'Max' for Parachute -- ('Max'+'Min')/2 for Servos -- 'Disarmed' for the rest - -**Values:** - -- `0`: Disabled -- `1`: Constant Min -- `2`: Constant Max -- `101`: Motor 1 -- `102`: Motor 2 -- `103`: Motor 3 -- `104`: Motor 4 -- `105`: Motor 5 -- `106`: Motor 6 -- `107`: Motor 7 -- `108`: Motor 8 -- `109`: Motor 9 -- `110`: Motor 10 -- `111`: Motor 11 -- `112`: Motor 12 -- `201`: Servo 1 -- `202`: Servo 2 -- `203`: Servo 3 -- `204`: Servo 4 -- `205`: Servo 5 -- `206`: Servo 6 -- `207`: Servo 7 -- `208`: Servo 8 -- `301`: Peripheral via Actuator Set 1 -- `302`: Peripheral via Actuator Set 2 -- `303`: Peripheral via Actuator Set 3 -- `304`: Peripheral via Actuator Set 4 -- `305`: Peripheral via Actuator Set 5 -- `306`: Peripheral via Actuator Set 6 -- `400`: Landing Gear -- `401`: Parachute -- `402`: RC Roll -- `403`: RC Pitch -- `404`: RC Throttle -- `405`: RC Yaw -- `406`: RC Flaps -- `407`: RC AUX 1 -- `408`: RC AUX 2 -- `409`: RC AUX 3 -- `410`: RC AUX 4 -- `411`: RC AUX 5 -- `412`: RC AUX 6 -- `420`: Gimbal Roll -- `421`: Gimbal Pitch -- `422`: Gimbal Yaw -- `430`: Gripper -- `440`: Landing Gear Wheel -- `450`: IC Engine Ignition -- `451`: IC Engine Throttle -- `452`: IC Engine Choke -- `453`: IC Engine Starter - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - -### VTQ_IO_MAX0 (`INT32`) {#VTQ_IO_MAX0} - -Vertiq IO CVI 0 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 65535 | - -### VTQ_IO_MAX1 (`INT32`) {#VTQ_IO_MAX1} - -Vertiq IO CVI 1 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 65535 | - -### VTQ_IO_MAX10 (`INT32`) {#VTQ_IO_MAX10} - -Vertiq IO CVI 10 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 65535 | - -### VTQ_IO_MAX11 (`INT32`) {#VTQ_IO_MAX11} - -Vertiq IO CVI 11 Maximum Value. - -Maxmimum output value (when not disarmed). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 65535 | | 65535 | - -### VTQ_IO_MAX12 (`INT32`) {#VTQ_IO_MAX12} - -Vertiq IO CVI 12 Maximum Value. - -Maxmimum output value (when not disarmed). +Maxmimum output value (when not disarmed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -14411,8 +12944,7 @@ Minimum output value (when not disarmed). Reverse Output Range for Vertiq IO. -Allows to reverse the output range for each channel. -Note: this is only useful for servos. +Allows to reverse the output range for each channel. Note: this is only useful for servos. **Bitmask:** @@ -14464,7 +12996,6 @@ Sideslip measurement noise of the internal wind estimator(s) of the airspeed sel Enable checks on airspeed sensors. Controls which checks are run to check airspeed data for validity. Only applied if ASPD_PRIMARY > 0. -Note: The missing data check (bit 0) is implicitly always enabled when ASPD_DO_CHECKS > 0, even if bit 0 is not explicitly set. **Bitmask:** @@ -14496,11 +13027,7 @@ Fallback options. First principle airspeed check time window. -Window for comparing airspeed change to throttle and pitch change. -Triggers when the airspeed change within this window is negative while throttle increases -and the vehicle pitches down. -Is meant to catch degrading airspeed blockages as can happen when flying through icing conditions. -Relies on FW_THR_TRIM being set accurately. +Window for comparing airspeed change to throttle and pitch change. Triggers when the airspeed change within this window is negative while throttle increases and the vehicle pitches down. Is meant to catch degrading airspeed blockages as can happen when flying through icing conditions. Relies on FW_THR_TRIM being set accurately. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -14510,10 +13037,7 @@ Relies on FW_THR_TRIM being set accurately. Airspeed failure innovation threshold. -This specifies the minimum airspeed innovation required to trigger a failsafe. Larger values make the check less sensitive, -smaller values make it more sensitive. Large innovations indicate an inconsistency between predicted (groundspeed - windspeeed) -and measured airspeed. -The time required to detect a fault when the threshold is exceeded depends on the size of the exceedance and is controlled by the ASPD_FS_INTEG parameter. +This specifies the minimum airspeed innovation required to trigger a failsafe. Larger values make the check less sensitive, smaller values make it more sensitive. Large innovations indicate an inconsistency between predicted (groundspeed - windspeeed) and measured airspeed. The time required to detect a fault when the threshold is exceeded depends on the size of the exceedance and is controlled by the ASPD_FS_INTEG parameter. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -14523,8 +13047,7 @@ The time required to detect a fault when the threshold is exceeded depends on th Airspeed failure innovation integral threshold. -This sets the time integral of airspeed innovation exceedance above ASPD_FS_INNOV required to trigger a failsafe. -Larger values make the check less sensitive, smaller positive values make it more sensitive. +This sets the time integral of airspeed innovation exceedance above ASPD_FS_INNOV required to trigger a failsafe. Larger values make the check less sensitive, smaller positive values make it more sensitive. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -14534,8 +13057,7 @@ Larger values make the check less sensitive, smaller positive values make it mor Airspeed failsafe start delay. -Delay before switching back to using airspeed sensor if checks indicate sensor is good. -Set to a negative value to disable the re-enabling in flight. +Delay before switching back to using airspeed sensor if checks indicate sensor is good. Set to a negative value to disable the re-enabling in flight. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -14573,9 +13095,9 @@ Scale of airspeed sensor 1. This is the scale IAS --> CAS of the first airspeed sensor instance -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.5 | 2.0 | | 1.0 | +| Reboot | minValue | maxValue | increment | default | unit | +| ------- | -------- | -------- | --------- | ------- | ---- | +| ✓ | 0.5 | 2.0 | | 1.0 | ### ASPD_SCALE_2 (`FLOAT`) {#ASPD_SCALE_2} @@ -14583,9 +13105,9 @@ Scale of airspeed sensor 2. This is the scale IAS --> CAS of the second airspeed sensor instance -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.5 | 2.0 | | 1.0 | +| Reboot | minValue | maxValue | increment | default | unit | +| ------- | -------- | -------- | --------- | ------- | ---- | +| ✓ | 0.5 | 2.0 | | 1.0 | ### ASPD_SCALE_3 (`FLOAT`) {#ASPD_SCALE_3} @@ -14593,9 +13115,9 @@ Scale of airspeed sensor 3. This is the scale IAS --> CAS of the third airspeed sensor instance -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.5 | 2.0 | | 1.0 | +| Reboot | minValue | maxValue | increment | default | unit | +| ------- | -------- | -------- | --------- | ------- | ---- | +| ✓ | 0.5 | 2.0 | | 1.0 | ### ASPD_SCALE_APPLY (`INT32`) {#ASPD_SCALE_APPLY} @@ -14615,8 +13137,7 @@ Controls when to apply the new estimated airspeed scale(s). Wind estimator true airspeed scale process noise spectral density. -Airspeed scale process noise of the internal wind estimator(s) of the airspeed selector. -When unaided, the scale uncertainty (1-sigma, unitless) increases by this amount every second. +Airspeed scale process noise of the internal wind estimator(s) of the airspeed selector. When unaided, the scale uncertainty (1-sigma, unitless) increases by this amount every second. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ------------ | @@ -14644,21 +13165,19 @@ True airspeed measurement noise of the internal wind estimator(s) of the airspee ### ASPD_WERR_THR (`FLOAT`) {#ASPD_WERR_THR} -Horizontal wind uncertainty threshold for valid ground-minus-wind. +Horizontal wind uncertainty threshold for synthetic airspeed. -The airspeed alternative derived from groundspeed and heading will be declared valid -as soon and as long the horizontal wind uncertainty is below this value. +The synthetic airspeed estimate (from groundspeed and heading) will be declared valid as soon and as long the horizontal wind uncertainty is below this value. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.01 | 5 | | 2. | m/s | +| | 0.001 | 5 | | 0.55 | m/s | ### ASPD_WIND_NSD (`FLOAT`) {#ASPD_WIND_NSD} Wind estimator wind process noise spectral density. -Wind process noise of the internal wind estimator(s) of the airspeed selector. -When unaided, the wind estimate uncertainty (1-sigma, in m/s) increases by this amount every second. +Wind process noise of the internal wind estimator(s) of the airspeed selector. When unaided, the wind estimate uncertainty (1-sigma, in m/s) increases by this amount every second. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | -------------- | @@ -14696,8 +13215,7 @@ Enable standalone quaternion based attitude estimator. External heading usage mode (from Motion capture/Vision). -Set to 1 to use heading estimate from vision. -Set to 2 to use heading from motion capture. +Set to 1 to use heading estimate from vision. Set to 2 to use heading from motion capture. **Values:** @@ -14713,9 +13231,7 @@ Set to 2 to use heading from motion capture. Magnetic declination, in degrees. -This parameter is not used in normal operation, -as the declination is looked up based on the -GPS coordinates of the vehicle. +This parameter is not used in normal operation, as the declination is looked up based on the GPS coordinates of the vehicle. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -14769,9 +13285,7 @@ Set to 0 to avoid using the magnetometer. Controls when to apply the new gains. -After the auto-tuning sequence is completed, -a new set of gains is available and can be applied -immediately or after landing. +After the auto-tuning sequence is completed, a new set of gains is available and can be applied immediately or after landing. **Values:** @@ -14787,11 +13301,7 @@ immediately or after landing. Tuning axes selection. -Defines which axes will be tuned during the auto-tuning sequence -Set bits in the following positions to enable: -0 : Roll -1 : Pitch -2 : Yaw +Defines which axes will be tuned during the auto-tuning sequence Set bits in the following positions to enable: 0 : Roll 1 : Pitch 2 : Yaw **Bitmask:** @@ -14805,9 +13315,9 @@ Set bits in the following positions to enable: ### FW_AT_MAN_AUX (`INT32`) {#FW_AT_MAN_AUX} -Enable/disable auto tuning using a manual control AUX input. +Enable/disable auto tuning using an RC AUX input. -Defines which RC_MAP_AUXn parameter maps the manual control channel used to enable/disable auto tuning. +Defines which RC_MAP_AUXn parameter maps the RC channel used to enable/disable auto tuning. **Values:** @@ -14823,6 +13333,26 @@ Defines which RC_MAP_AUXn parameter maps the manual control channel used to enab | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 6 | | 0 | +### FW_AT_START (`INT32`) {#FW_AT_START} + +Start the autotuning sequence. + +WARNING: this will inject steps to the rate controller and can be dangerous. Only activate if you know what you are doing, and in a safe environment. Any motion of the remote stick will abort the signal injection and reset this parameter Best is to perform the identification in position or hold mode. Increase the amplitude of the injected signal using FW_AT_SYSID_AMP for more signal/noise ratio + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------------ | ---- | +| | | | | Disabled (0) | + +### FW_AT_SYSID_AMP (`FLOAT`) {#FW_AT_SYSID_AMP} + +Amplitude of the injected signal. + +This parameter scales the signal sent to the rate controller during system identification. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.1 | 6.0 | | 1.0 | + ### FW_AT_SYSID_F0 (`FLOAT`) {#FW_AT_SYSID_F0} Start frequency of the injected signal. @@ -14841,7 +13371,7 @@ Can be set lower or higher than the start frequency | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.1 | 30.0 | | 10. | Hz | +| | 0.1 | 30.0 | | 20. | Hz | ### FW_AT_SYSID_TIME (`FLOAT`) {#FW_AT_SYSID_TIME} @@ -14867,18 +13397,13 @@ Type of signal used during system identification to excite the system. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 1 | +| | | | | 0 | ### MC_AT_APPLY (`INT32`) {#MC_AT_APPLY} Controls when to apply the new gains. -After the auto-tuning sequence is completed, -a new set of gains is available and can be applied -immediately or after landing. -WARNING Applying the gains in air is dangerous as there is no -guarantee that those new gains will be able to stabilize -the drone properly. +After the auto-tuning sequence is completed, a new set of gains is available and can be applied immediately or after landing. WARNING Applying the gains in air is dangerous as there is no guarantee that those new gains will be able to stabilize the drone properly. **Values:** @@ -14906,6 +13431,16 @@ Desired angular rate closed-loop rise time. | ------ | -------- | -------- | --------- | ------- | ---- | | | 0.01 | 0.5 | | 0.14 | s | +### MC_AT_START (`INT32`) {#MC_AT_START} + +Start the autotuning sequence. + +WARNING: this will inject steps to the rate controller and can be dangerous. Only activate if you know what you are doing, and in a safe environment. Any motion of the remote stick will abort the signal injection and reset this parameter Best is to perform the identification in position or hold mode. Increase the amplitude of the injected signal using MC_AT_SYSID_AMP for more signal/noise ratio + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------------ | ---- | +| | | | | Disabled (0) | + ### MC_AT_SYSID_AMP (`FLOAT`) {#MC_AT_SYSID_AMP} Amplitude of the injected signal. @@ -14920,9 +13455,7 @@ Amplitude of the injected signal. Battery 1 current per volt (A/V). -The voltage seen by the ADC multiplied by this factor -will determine the battery current. A value of -1 means to use -the board default. +The voltage seen by the ADC multiplied by this factor will determine the battery current. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -14942,8 +13475,7 @@ Defines the capacity of battery 1 in mAh. Battery 1 Current ADC Channel. -This parameter specifies the ADC channel used to monitor current of main power battery. -A value of -1 means to use the board default. +This parameter specifies the ADC channel used to monitor current of main power battery. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -14953,13 +13485,7 @@ A value of -1 means to use the board default. Battery 1 idle current overwrite. -This parameter allows to overwrite the current measured during -idle (unarmed) state with a user-defined constant value (expressed in amperes). -When the system is armed, the measured current is used. This is useful -because on certain ESCs current measurements are inaccurate in case of no load. -Negative values are ignored and will cause the measured current to be used. -The default value of 0 disables the overwrite, in which case the measured value -is always used. +This parameter allows to overwrite the current measured during idle (unarmed) state with a user-defined constant value (expressed in amperes). When the system is armed, the measured current is used. This is useful because on certain ESCs current measurements are inaccurate in case of no load. Negative values are ignored and will cause the measured current to be used. The default value of 0 disables the overwrite, in which case the measured value is always used. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15009,21 +13535,12 @@ If non-negative, then this will be used instead of the online estimated internal Battery 1 monitoring source. -This parameter controls the source of battery data. The value 'Power Module / Analog' -means that measurements are expected to come from either analog (ADC) inputs -or an I2C power monitor (e.g. INA226). Analog inputs are voltage and current -measurements read from the board's ADC channels, typically from an onboard -voltage divider and current shunt, or an external analog power module. -I2C power monitors are digital sensors on the I2C bus. -If the value is set to 'External' then the system expects to receive MAVLink -or CAN battery status messages, or the battery data is published by an external driver. -If the value is set to 'ESCs', the battery information are taken from the esc_status message. -This requires the ESC to provide both voltage as well as current (via ESC telemetry). +This parameter controls the source of battery data. The value 'Power Module' means that measurements are expected to come from a power module. If the value is set to 'External' then the system expects to receive mavlink battery status messages. If the value is set to 'ESCs', the battery information are taken from the esc_status message. This requires the ESC to provide both voltage as well as current. **Values:** - `-1`: Disabled -- `0`: Power Module / Analog +- `0`: Power Module - `1`: External - `2`: ESCs @@ -15035,10 +13552,7 @@ This requires the ESC to provide both voltage as well as current (via ESC teleme Battery 1 Voltage ADC Channel. -This parameter specifies the ADC channel used to monitor voltage of main power battery. -A value of -1 means to use the board default. A value of -2 disables analog monitoring. -This is useful when the FMU supports both analog and digital voltage monitoring and you want -to use digital monitoring exclusively. +This parameter specifies the ADC channel used to monitor voltage of main power battery. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15048,8 +13562,7 @@ to use digital monitoring exclusively. Full cell voltage. -Defines the voltage where a single cell of the battery is considered full. -For a more accurate estimate set this below the nominal voltage of e.g. 4.2V +Defines the voltage where a single cell of the battery is considered full. For a more accurate estimate set this below the nominal voltage of e.g. 4.2V | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15059,10 +13572,7 @@ For a more accurate estimate set this below the nominal voltage of e.g. 4.2V Battery 1 voltage divider (V divider). -This is the divider from battery 1 voltage to ADC voltage. -If using e.g. Mauch power modules the value from the datasheet -can be applied straight here. A value of -1 means to use -the board default. +This is the divider from battery 1 voltage to ADC voltage. If using e.g. Mauch power modules the value from the datasheet can be applied straight here. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15072,10 +13582,7 @@ the board default. Empty cell voltage. -Defines the voltage where a single cell of the battery is considered empty. -The voltage should be chosen above the steep dropoff at 3.5V. A typical -lithium battery can only be discharged under high load down to 10% before -it drops off to a voltage level damaging the cells. +Defines the voltage where a single cell of the battery is considered empty. The voltage should be chosen above the steep dropoff at 3.5V. A typical lithium battery can only be discharged under high load down to 10% before it drops off to a voltage level damaging the cells. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15085,9 +13592,7 @@ it drops off to a voltage level damaging the cells. Battery 2 current per volt (A/V). -The voltage seen by the ADC multiplied by this factor -will determine the battery current. A value of -1 means to use -the board default. +The voltage seen by the ADC multiplied by this factor will determine the battery current. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15107,8 +13612,7 @@ Defines the capacity of battery 2 in mAh. Battery 2 Current ADC Channel. -This parameter specifies the ADC channel used to monitor current of main power battery. -A value of -1 means to use the board default. +This parameter specifies the ADC channel used to monitor current of main power battery. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15118,13 +13622,7 @@ A value of -1 means to use the board default. Battery 2 idle current overwrite. -This parameter allows to overwrite the current measured during -idle (unarmed) state with a user-defined constant value (expressed in amperes). -When the system is armed, the measured current is used. This is useful -because on certain ESCs current measurements are inaccurate in case of no load. -Negative values are ignored and will cause the measured current to be used. -The default value of 0 disables the overwrite, in which case the measured value -is always used. +This parameter allows to overwrite the current measured during idle (unarmed) state with a user-defined constant value (expressed in amperes). When the system is armed, the measured current is used. This is useful because on certain ESCs current measurements are inaccurate in case of no load. Negative values are ignored and will cause the measured current to be used. The default value of 0 disables the overwrite, in which case the measured value is always used. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15174,21 +13672,12 @@ If non-negative, then this will be used instead of the online estimated internal Battery 2 monitoring source. -This parameter controls the source of battery data. The value 'Power Module / Analog' -means that measurements are expected to come from either analog (ADC) inputs -or an I2C power monitor (e.g. INA226). Analog inputs are voltage and current -measurements read from the board's ADC channels, typically from an onboard -voltage divider and current shunt, or an external analog power module. -I2C power monitors are digital sensors on the I2C bus. -If the value is set to 'External' then the system expects to receive MAVLink -or CAN battery status messages, or the battery data is published by an external driver. -If the value is set to 'ESCs', the battery information are taken from the esc_status message. -This requires the ESC to provide both voltage as well as current (via ESC telemetry). +This parameter controls the source of battery data. The value 'Power Module' means that measurements are expected to come from a power module. If the value is set to 'External' then the system expects to receive mavlink battery status messages. If the value is set to 'ESCs', the battery information are taken from the esc_status message. This requires the ESC to provide both voltage as well as current. **Values:** - `-1`: Disabled -- `0`: Power Module / Analog +- `0`: Power Module - `1`: External - `2`: ESCs @@ -15200,10 +13689,7 @@ This requires the ESC to provide both voltage as well as current (via ESC teleme Battery 2 Voltage ADC Channel. -This parameter specifies the ADC channel used to monitor voltage of main power battery. -A value of -1 means to use the board default. A value of -2 disables analog monitoring. -This is useful when the FMU supports both analog and digital voltage monitoring and you want -to use digital monitoring exclusively. +This parameter specifies the ADC channel used to monitor voltage of main power battery. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15213,8 +13699,7 @@ to use digital monitoring exclusively. Full cell voltage. -Defines the voltage where a single cell of the battery is considered full. -For a more accurate estimate set this below the nominal voltage of e.g. 4.2V +Defines the voltage where a single cell of the battery is considered full. For a more accurate estimate set this below the nominal voltage of e.g. 4.2V | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15224,10 +13709,7 @@ For a more accurate estimate set this below the nominal voltage of e.g. 4.2V Battery 2 voltage divider (V divider). -This is the divider from battery 2 voltage to ADC voltage. -If using e.g. Mauch power modules the value from the datasheet -can be applied straight here. A value of -1 means to use -the board default. +This is the divider from battery 2 voltage to ADC voltage. If using e.g. Mauch power modules the value from the datasheet can be applied straight here. A value of -1 means to use the board default. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15237,10 +13719,7 @@ the board default. Empty cell voltage. -Defines the voltage where a single cell of the battery is considered empty. -The voltage should be chosen above the steep dropoff at 3.5V. A typical -lithium battery can only be discharged under high load down to 10% before -it drops off to a voltage level damaging the cells. +Defines the voltage where a single cell of the battery is considered empty. The voltage should be chosen above the steep dropoff at 3.5V. A typical lithium battery can only be discharged under high load down to 10% before it drops off to a voltage level damaging the cells. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15300,21 +13779,12 @@ If non-negative, then this will be used instead of the online estimated internal Battery 3 monitoring source. -This parameter controls the source of battery data. The value 'Power Module / Analog' -means that measurements are expected to come from either analog (ADC) inputs -or an I2C power monitor (e.g. INA226). Analog inputs are voltage and current -measurements read from the board's ADC channels, typically from an onboard -voltage divider and current shunt, or an external analog power module. -I2C power monitors are digital sensors on the I2C bus. -If the value is set to 'External' then the system expects to receive MAVLink -or CAN battery status messages, or the battery data is published by an external driver. -If the value is set to 'ESCs', the battery information are taken from the esc_status message. -This requires the ESC to provide both voltage as well as current (via ESC telemetry). +This parameter controls the source of battery data. The value 'Power Module' means that measurements are expected to come from a power module. If the value is set to 'External' then the system expects to receive mavlink battery status messages. If the value is set to 'ESCs', the battery information are taken from the esc_status message. This requires the ESC to provide both voltage as well as current. **Values:** - `-1`: Disabled -- `0`: Power Module / Analog +- `0`: Power Module - `1`: External - `2`: ESCs @@ -15326,8 +13796,7 @@ This requires the ESC to provide both voltage as well as current (via ESC teleme Full cell voltage. -Defines the voltage where a single cell of the battery is considered full. -For a more accurate estimate set this below the nominal voltage of e.g. 4.2V +Defines the voltage where a single cell of the battery is considered full. For a more accurate estimate set this below the nominal voltage of e.g. 4.2V | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15337,10 +13806,7 @@ For a more accurate estimate set this below the nominal voltage of e.g. 4.2V Empty cell voltage. -Defines the voltage where a single cell of the battery is considered empty. -The voltage should be chosen above the steep dropoff at 3.5V. A typical -lithium battery can only be discharged under high load down to 10% before -it drops off to a voltage level damaging the cells. +Defines the voltage where a single cell of the battery is considered empty. The voltage should be chosen above the steep dropoff at 3.5V. A typical lithium battery can only be discharged under high load down to 10% before it drops off to a voltage level damaging the cells. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15358,8 +13824,7 @@ This parameter is deprecated. Please use BAT1_I_CHANNEL. Expected battery current in flight. -This value is used to initialize the in-flight average current estimation, -which in turn is used for estimating remaining flight time and RTL triggering. +This value is used to initialize the in-flight average current estimation, which in turn is used for estimating remaining flight time and RTL triggering. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15369,9 +13834,7 @@ which in turn is used for estimating remaining flight time and RTL triggering. Critical threshold. -Sets the threshold when the battery will be reported as critically low. -This has to be lower than the low threshold. This threshold commonly -will trigger RTL. +Sets the threshold when the battery will be reported as critically low. This has to be lower than the low threshold. This threshold commonly will trigger RTL. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15381,9 +13844,7 @@ will trigger RTL. Emergency threshold. -Sets the threshold when the battery will be reported as dangerously low. -This has to be lower than the critical threshold. This threshold commonly -will trigger landing. +Sets the threshold when the battery will be reported as dangerously low. This has to be lower than the critical threshold. This threshold commonly will trigger landing. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15393,8 +13854,7 @@ will trigger landing. Low threshold. -Sets the threshold when the battery will be reported as low. -This has to be higher than the critical threshold. +Sets the threshold when the battery will be reported as low. This has to be higher than the critical threshold. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15404,8 +13864,7 @@ This has to be higher than the critical threshold. Offset in volt as seen by the ADC input of the current sensor. -This offset will be subtracted before calculating the battery -current based on the voltage. +This offset will be subtracted before calculating the battery current based on the voltage. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15446,7 +13905,6 @@ Specify USB MAVLink mode. - `10`: gimbal - `11`: onboard_low_bandwidth - `12`: uavionix -- `13`: Low Bandwidth | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15558,8 +14016,7 @@ This parameter sets the time between two consecutive trigger events Minimum camera trigger interval. -This parameter sets the minimum time between two consecutive trigger events -the specific camera setup is supporting. +This parameter sets the minimum time between two consecutive trigger events the specific camera setup is supporting. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15618,9 +14075,7 @@ PWM output to trigger shot. Circuit breaker for disabling buzzer. -Setting this parameter to 782097 will disable the buzzer audio notification. -Setting this parameter to 782090 will disable the startup tune, while keeping -all others enabled. +Setting this parameter to 782097 will disable the buzzer audio notification. Setting this parameter to 782090 will disable the startup tune, while keeping all others enabled. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15630,10 +14085,7 @@ all others enabled. Circuit breaker for flight termination. -Setting this parameter to 121212 will disable the flight termination action if triggered -by the FailureDetector logic or if FMU is lost. -This circuit breaker does not affect the RC loss, data link loss, geofence, -and takeoff failure detection safety logic. +Setting this parameter to 121212 will disable the flight termination action if triggered by the FailureDetector logic or if FMU is lost. This circuit breaker does not affect the RC loss, data link loss, geofence, and takeoff failure detection safety logic. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -15643,8 +14095,7 @@ and takeoff failure detection safety logic. Circuit breaker for IO safety. -Setting this parameter to 22027 will disable IO safety. -WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK +Setting this parameter to 22027 will disable IO safety. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15654,9 +14105,7 @@ WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK Circuit breaker for power supply check. -Setting this parameter to 894281 will disable the power valid -checks in the commander. -WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK +Setting this parameter to 894281 will disable the power valid checks in the commander. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15666,12 +14115,7 @@ WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK Circuit breaker for USB link check. -Setting this parameter to 197848 will disable the USB connected -checks in the commander, setting it to 0 keeps them enabled (recommended). -We are generally recommending to not fly with the USB link -connected and production vehicles should set this parameter to -zero to prevent users from flying USB powered. However, for R&D purposes -it has proven over the years to work just fine. +Setting this parameter to 197848 will disable the USB connected checks in the commander, setting it to 0 keeps them enabled (recommended). We are generally recommending to not fly with the USB link connected and production vehicles should set this parameter to zero to prevent users from flying USB powered. However, for R&D purposes it has proven over the years to work just fine. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15681,9 +14125,7 @@ it has proven over the years to work just fine. Circuit breaker for arming in fixed-wing mode check. -Setting this parameter to 159753 will enable arming in fixed-wing -mode for VTOLs. -WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK +Setting this parameter to 159753 will enable arming in fixed-wing mode for VTOLs. WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15695,8 +14137,7 @@ WARNING: ENABLING THIS CIRCUIT BREAKER IS AT OWN RISK Set the actuator failure failsafe mode. -Note: actuator failure needs to be enabled and configured via FD*ACT*\* -parameters. +Note: actuator failure needs to be enabled and configured via FD*ACT*\* parameters. **Values:** @@ -15739,12 +14180,7 @@ Used if arm authorization is requested by COM_ARM_AUTH_REQ. Arm authorization method. -Methods: - -- one arm: request authorization and arm when authorization is received -- two step arm: 1st arm command request an authorization and - 2nd arm command arm the drone if authorized - Used if arm authorization is requested by COM_ARM_AUTH_REQ. +Methods: - one arm: request authorization and arm when authorization is received - two step arm: 1st arm command request an authorization and 2nd arm command arm the drone if authorized Used if arm authorization is requested by COM_ARM_AUTH_REQ. **Values:** @@ -15769,8 +14205,7 @@ By default off. The default allows to arm the vehicle without a arm authorizatio Arm authorization timeout. -Timeout for authorizer answer. -Used if arm authorization is requested by COM_ARM_AUTH_REQ. +Timeout for authorizer answer. Used if arm authorization is requested by COM_ARM_AUTH_REQ. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15780,8 +14215,7 @@ Used if arm authorization is requested by COM_ARM_AUTH_REQ. Minimum battery level for arming. -Threshold for battery percentage below arming is prohibited. -A negative value means BAT_CRIT_THR is the threshold. +Threshold for battery percentage below arming is prohibited. A negative value means BAT_CRIT_THR is the threshold. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15791,8 +14225,7 @@ A negative value means BAT_CRIT_THR is the threshold. Enable checks on ESCs that report telemetry. -If this parameter is set, the system will check ESC's online status and failures. -This param is specific for ESCs reporting status. It shall be used only if ESCs support telemetry. +If this parameter is set, the system will check ESC's online status and failures. This param is specific for ESCs reporting status. It shall be used only if ESCs support telemetry. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -15802,8 +14235,7 @@ This param is specific for ESCs reporting status. It shall be used only if ESCs Enable FMU SD card hardfault detection check. -This check detects if there are hardfault files present on the -SD card. If so, and the parameter is enabled, arming is prevented. +This check detects if there are hardfault files present on the SD card. If so, and the parameter is enabled, arming is prevented. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -15839,8 +14271,7 @@ Set -1 to disable the check. Enable mag strength preflight check. -Check if the estimator detects a strong magnetic -disturbance (check enabled by EKF2_MAG_CHECK) +Check if the estimator detects a strong magnetic disturbance (check enabled by EKF2_MAG_CHECK) **Values:** @@ -15866,9 +14297,7 @@ The default allows to arm the vehicle without a valid mission. Enable Drone ID system detection and health check. -This check detects if the Open Drone ID system is missing. -Depending on the value of the parameter, the check can be -disabled, warn only or deny arming. +This check detects if the Open Drone ID system is missing. Depending on the value of the parameter, the check can be disabled, warn only or deny arming. **Values:** @@ -15884,9 +14313,7 @@ disabled, warn only or deny arming. Enable FMU SD card detection check. -This check detects if the FMU SD card is missing. -Depending on the value of the parameter, the check can be -disabled, warn only or deny arming. +This check detects if the FMU SD card is missing. Depending on the value of the parameter, the check can be disabled, warn only or deny arming. **Values:** @@ -15902,8 +14329,7 @@ disabled, warn only or deny arming. Arm switch is a momentary button. -0: Arming/disarming triggers on switch transition. -1: Arming/disarming triggers when holding the momentary button down like the stick gesture. +0: Arming/disarming triggers on switch transition. 1: Arming/disarming triggers when holding the momentary button down for COM_RC_ARM_HYST like the stick gesture. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -15911,17 +14337,15 @@ Arm switch is a momentary button. ### COM_ARM_WO_GPS (`INT32`) {#COM_ARM_WO_GPS} -Arming without GNSS configuration. +GPS preflight check. -Configures whether arming is allowed without GNSS, for modes that require a global position -(specifically, in those modes when a check defined by EKF2_GPS_CHECK fails). -The settings deny arming and warn, allow arming and warn, or silently allow arming. +Measures taken when a check defined by EKF2_GPS_CHECK is failing. **Values:** - `0`: Deny arming -- `1`: Allow arming (with warning) -- `2`: Allow arming (no warning) +- `1`: Warning only +- `2`: Disabled | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15931,8 +14355,7 @@ The settings deny arming and warn, allow arming and warn, or silently allow armi Maximum allowed CPU load to still arm. -The check fails if the CPU load is above this threshold for 2s. -A negative value disables the check. +The check fails if the CPU load is above this threshold for 2s. A negative value disables the check. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15942,9 +14365,7 @@ A negative value disables the check. Time-out for auto disarm after landing. -A non-zero, positive value specifies the time-out period in seconds after which the vehicle will be -automatically disarmed in case a landing situation has been detected during this period. -A zero or negative value means that automatic disarming triggered by landing detection is disabled. +A non-zero, positive value specifies the time-out period in seconds after which the vehicle will be automatically disarmed in case a landing situation has been detected during this period. A zero or negative value means that automatic disarming triggered by landing detection is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -15954,10 +14375,7 @@ A zero or negative value means that automatic disarming triggered by landing det Allow disarming via switch/stick/button on multicopters in manual thrust modes. -0: Disallow disarming when not landed -1: Allow disarming in multicopter flight in modes where -the thrust is directly controlled by thr throttle stick -e.g. Stabilized, Acro +0: Disallow disarming when not landed 1: Allow disarming in multicopter flight in modes where the thrust is directly controlled by thr throttle stick e.g. Stabilized, Acro | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -15967,10 +14385,7 @@ e.g. Stabilized, Acro Time-out for auto disarm if not taking off. -A non-zero, positive value specifies the time in seconds, within which the -vehicle is expected to take off after arming. In case the vehicle didn't takeoff -within the timeout it disarms again. -A negative value disables autmoatic disarming triggered by a pre-takeoff timeout. +A non-zero, positive value specifies the time in seconds, within which the vehicle is expected to take off after arming. In case the vehicle didn't takeoff within the timeout it disarms again. A negative value disables autmoatic disarming triggered by a pre-takeoff timeout. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16006,11 +14421,7 @@ After this amount of seconds without datalink, the GCS connection lost mode trig Delay between failsafe condition triggered and failsafe reaction. -Before entering failsafe (RTL, Land, Hold), wait COM_FAIL_ACT_T seconds in Hold mode -for the user to realize. -During that time the user can switch modes, but cannot take over control via the stick override feature (see COM_RC_OVERRIDE). -Afterwards the configured failsafe action is triggered and the user may use stick override. -A zero value disables the delay. +Before entering failsafe (RTL, Land, Hold), wait COM_FAIL_ACT_T seconds in Hold mode for the user to realize. During that time the user cannot take over control via the stick override feature (see COM_RC_OVERRIDE). Afterwards the configured failsafe action is triggered and the user may use stick override. A zero value disables the delay and the user cannot take over via stick movements (switching modes is still allowed). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16020,9 +14431,7 @@ A zero value disables the delay. Next flight UUID. -This number is incremented automatically after every flight on -disarming in order to remember the next flight UUID. -The first flight is 0. +This number is incremented automatically after every flight on disarming in order to remember the next flight UUID. The first flight is 0. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16032,8 +14441,7 @@ The first flight is 0. Mode slot 1. -If the main switch channel is in this range the -selected flight mode will be applied. +If the main switch channel is in this range the selected flight mode will be applied. **Values:** @@ -16052,7 +14460,6 @@ selected flight mode will be applied. - `11`: Land - `12`: Follow Me - `13`: Precision Land -- `16`: Altitude Cruise - `100`: External Mode 1 - `101`: External Mode 2 - `102`: External Mode 3 @@ -16070,8 +14477,7 @@ selected flight mode will be applied. Mode slot 2. -If the main switch channel is in this range the -selected flight mode will be applied. +If the main switch channel is in this range the selected flight mode will be applied. **Values:** @@ -16090,7 +14496,6 @@ selected flight mode will be applied. - `11`: Land - `12`: Follow Me - `13`: Precision Land -- `16`: Altitude Cruise - `100`: External Mode 1 - `101`: External Mode 2 - `102`: External Mode 3 @@ -16108,8 +14513,7 @@ selected flight mode will be applied. Mode slot 3. -If the main switch channel is in this range the -selected flight mode will be applied. +If the main switch channel is in this range the selected flight mode will be applied. **Values:** @@ -16128,7 +14532,6 @@ selected flight mode will be applied. - `11`: Land - `12`: Follow Me - `13`: Precision Land -- `16`: Altitude Cruise - `100`: External Mode 1 - `101`: External Mode 2 - `102`: External Mode 3 @@ -16146,8 +14549,7 @@ selected flight mode will be applied. Mode slot 4. -If the main switch channel is in this range the -selected flight mode will be applied. +If the main switch channel is in this range the selected flight mode will be applied. **Values:** @@ -16166,7 +14568,6 @@ selected flight mode will be applied. - `11`: Land - `12`: Follow Me - `13`: Precision Land -- `16`: Altitude Cruise - `100`: External Mode 1 - `101`: External Mode 2 - `102`: External Mode 3 @@ -16184,8 +14585,7 @@ selected flight mode will be applied. Mode slot 5. -If the main switch channel is in this range the -selected flight mode will be applied. +If the main switch channel is in this range the selected flight mode will be applied. **Values:** @@ -16204,7 +14604,6 @@ selected flight mode will be applied. - `11`: Land - `12`: Follow Me - `13`: Precision Land -- `16`: Altitude Cruise - `100`: External Mode 1 - `101`: External Mode 2 - `102`: External Mode 3 @@ -16222,8 +14621,7 @@ selected flight mode will be applied. Mode slot 6. -If the main switch channel is in this range the -selected flight mode will be applied. +If the main switch channel is in this range the selected flight mode will be applied. **Values:** @@ -16242,7 +14640,6 @@ selected flight mode will be applied. - `11`: Land - `12`: Follow Me - `13`: Precision Land -- `16`: Altitude Cruise - `100`: External Mode 1 - `101`: External Mode 2 - `102`: External Mode 3 @@ -16260,8 +14657,7 @@ selected flight mode will be applied. Remaining flight time low failsafe. -Action the system takes when the remaining flight time is below -the estimated time it takes to reach the RTL destination. +Action the system takes when the remaining flight time is below the estimated time it takes to reach the RTL destination. **Values:** @@ -16271,15 +14667,13 @@ the estimated time it takes to reach the RTL destination. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | | | 1 | 0 | +| | | | 1 | 3 | ### COM_FLT_PROFILE (`INT32`) {#COM_FLT_PROFILE} User Flight Profile. -Describes the intended use of the vehicle. -Can be used by ground control software or log post processing. -This param does not influence the behavior within the firmware. This means for example the control logic is independent of the setting of this param (but depends on other params). +Describes the intended use of the vehicle. Can be used by ground control software or log post processing. This param does not influence the behavior within the firmware. This means for example the control logic is independent of the setting of this param (but depends on other params). **Values:** @@ -16296,13 +14690,7 @@ This param does not influence the behavior within the firmware. This means for e Maximum allowed flight time. -The vehicle aborts the current operation and returns to launch when -the time since takeoff is above this value. It is not possible to resume the -mission or switch to any auto mode other than RTL or Land. Taking over in any manual -mode is still possible. -Starting from 90% of the maximum flight time, a warning message will be sent -every 1 minute with the remaining time until automatic RTL. -Set to -1 to disable. +The vehicle aborts the current operation and returns to launch when the time since takeoff is above this value. It is not possible to resume the mission or switch to any auto mode other than RTL or Land. Taking over in any manual mode is still possible. Starting from 90% of the maximum flight time, a warning message will be sent every 1 minute with the remaining time until automatic RTL. Set to -1 to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16332,8 +14720,7 @@ After this amount of seconds without datalink the data link lost mode triggers High Latency Datalink regain time threshold. -After a data link loss: after this number of seconds with a healthy datalink the 'datalink loss' -flag is set back to false +After a data link loss: after this number of seconds with a healthy datalink the 'datalink loss' flag is set back to false | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16343,10 +14730,7 @@ flag is set back to false Home position enabled. -Set home position automatically if possible. -During missions, the latitude/longitude of the home position is locked and will not reset during intermediate landings. -It will only update once the mission is complete or landed outside of a mission. -However, the altitude is still being adjusted to correct for GNSS vertical drift in the first 2 minutes after takeoff. +Set home position automatically if possible. During missions, the home position is locked and will not reset during intermediate landings. It will only update once the mission is complete or landed outside of a mission. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -16356,9 +14740,7 @@ However, the altitude is still being adjusted to correct for GNSS vertical drift Allows setting the home position after takeoff. -If set to true, the autopilot is allowed to set its home position after takeoff -The true home position is back-computed if a local position is estimate if available. -If no local position is available, home is set to the current position. +If set to true, the autopilot is allowed to set its home position after takeoff The true home position is back-computed if a local position is estimate if available. If no local position is available, home is set to the current position. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -16368,8 +14750,7 @@ If no local position is available, home is set to the current position. Imbalanced propeller failsafe mode. -Action the system takes when an imbalanced propeller is detected by the failure detector. -See also FD_IMB_PROP_THR to set the failure threshold. +Action the system takes when an imbalanced propeller is detected by the failure detector. See also FD_IMB_PROP_THR to set the failure threshold. **Values:** @@ -16386,8 +14767,6 @@ See also FD_IMB_PROP_THR to set the failure threshold. Timeout value for disarming when kill switch is engaged. -Use RC_MAP_KILL_SW to map a kill switch. - | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | 0.0 | 30.0 | 0.1 | 5.0 | s | @@ -16396,10 +14775,7 @@ Use RC_MAP_KILL_SW to map a kill switch. Timeout for detecting a failure after takeoff. -A non-zero, positive value specifies the timeframe in seconds within failure detector is allowed to disarm the vehicle -if attitude exceeds the limits defined in FD_FAIL_P and FD_FAIL_R. -The check is not executed for flight modes that do support acrobatic maneuvers, e.g: Acro (MC/FW) and Manual (FW). -A zero or negative value means that the check is disabled. +A non-zero, positive value specifies the timeframe in seconds within failure detector is allowed to disarm the vehicle if attitude exceeds the limits defined in FD_FAIL_P and FD_FAIL_R. The check is not executed for flight modes that do support acrobatic maneuvers, e.g: Acro (MC/FW) and Manual (FW). A zero or negative value means that the check is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16409,8 +14785,7 @@ A zero or negative value means that the check is disabled. Battery failsafe mode. -Action the system takes at critical battery. See also BAT_CRIT_THR and BAT_EMERGEN_THR -for definition of battery states. +Action the system takes at critical battery. See also BAT_CRIT_THR and BAT_EMERGEN_THR for definition of battery states. **Values:** @@ -16426,9 +14801,7 @@ for definition of battery states. External mode identifier 0. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16438,9 +14811,7 @@ which is required when mapping an external mode to an RC switch. External mode identifier 1. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16450,9 +14821,7 @@ which is required when mapping an external mode to an RC switch. External mode identifier 2. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16462,9 +14831,7 @@ which is required when mapping an external mode to an RC switch. External mode identifier 3. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16474,9 +14841,7 @@ which is required when mapping an external mode to an RC switch. External mode identifier 4. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16486,9 +14851,7 @@ which is required when mapping an external mode to an RC switch. External mode identifier 5. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16498,9 +14861,7 @@ which is required when mapping an external mode to an RC switch. External mode identifier 6. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16510,9 +14871,7 @@ which is required when mapping an external mode to an RC switch. External mode identifier 7. -This parameter is automatically set to identify external modes. It ensures that modes -get assigned to the same index independent from their startup order, -which is required when mapping an external mode to an RC switch. +This parameter is automatically set to identify external modes. It ensures that modes get assigned to the same index independent from their startup order, which is required when mapping an external mode to an RC switch. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16532,8 +14891,7 @@ By default disabled for safety reasons Enable Actuator Testing. -If set, enables the actuator test interface via MAVLink (ACTUATOR_TEST), that -allows spinning the motors and moving the servos for testing purposes. +If set, enables the actuator test interface via MAVLink (ACTUATOR_TEST), that allows spinning the motors and moving the servos for testing purposes. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -16551,8 +14909,7 @@ Time-out to wait when onboard computer connection is lost before warning about l Set offboard loss failsafe mode. -The offboard loss failsafe will only be entered after a timeout, -set by COM_OF_LOSS_T in seconds. +The offboard loss failsafe will only be entered after a timeout, set by COM_OF_LOSS_T in seconds. **Values:** @@ -16587,16 +14944,26 @@ Expect and require a healthy MAVLink parachute system. | ------ | -------- | -------- | --------- | ------------ | ---- | | | | | | Disabled (0) | +### COM_POSCTL_NAVL (`INT32`) {#COM_POSCTL_NAVL} + +Position mode navigation loss response. + +This sets the flight mode that will be used if navigation accuracy is no longer adequate for position control in manual Position mode. + +**Values:** + +- `0`: Altitude mode +- `1`: Land mode (descend) + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | | | | 0 | + ### COM_POS_FS_EPH (`FLOAT`) {#COM_POS_FS_EPH} Horizontal position error threshold for hovering systems. -This is the horizontal position error (EPH) threshold that will trigger a failsafe. -If the previous position error was below this threshold, there is an additional -factor of 2.5 applied (threshold for invalidation 2.5 times the one for validation). -Only used for multicopters and VTOLs in hover mode. -Independent from estimator positioning data timeout threshold (see EKF2_NOAID_TOUT). -Set to -1 to disable. +This is the horizontal position error (EPH) threshold that will trigger a failsafe. If the previous position error was below this threshold, there is an additional factor of 2.5 applied (threshold for invalidation 2.5 times the one for validation). Only used for multicopters and VTOLs in hover mode. Independent from estimator positioning data timeout threshold (see EKF2_NOAID_TOUT). Set to -1 to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16606,10 +14973,7 @@ Set to -1 to disable. Low position accuracy action. -Action the system takes when the estimated position has an accuracy below the specified threshold. -See COM_POS_LOW_EPH to set the failsafe threshold. -The failsafe action is only executed if the vehicle is in auto mission or auto loiter mode, -otherwise it is only a warning. +Action the system takes when the estimated position has an accuracy below the specified threshold. See COM_POS_LOW_EPH to set the failsafe threshold. The failsafe action is only executed if the vehicle is in auto mission or auto loiter mode, otherwise it is only a warning. **Values:** @@ -16628,10 +14992,7 @@ otherwise it is only a warning. Low position accuracy failsafe threshold. -This triggers the action specified in COM_POS_LOW_ACT if the estimated position accuracy is below this threshold. -Local position has to be still declared valid, which requires some kind of velocity aiding or large dead-reckoning time (EKF2_NOAID_TOUT), -and a high failsafe threshold (COM_POS_FS_EPH). -Set to -1 to disable. +This triggers the action specified in COM_POS_LOW_ACT if the estimated position accuracy is below this threshold. Local position has to be still declared valid, which requires some kind of velocity aiding or large dead-reckoning time (EKF2_NOAID_TOUT), and a high failsafe threshold (COM_POS_FS_EPH). Set to -1 to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16641,8 +15002,7 @@ Set to -1 to disable. Required number of redundant power modules. -This configures a check to verify the expected number of 5V rail power supplies are present. By default only one is expected. -Note: CBRK_SUPPLY_CHK disables all power checks including this one. +This configures a check to verify the expected number of 5V rail power supplies are present. By default only one is expected. Note: CBRK_SUPPLY_CHK disables all power checks including this one. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16652,8 +15012,7 @@ Note: CBRK_SUPPLY_CHK disables all power checks including this one. Condition to enter prearmed mode. -Condition to enter the prearmed state, an intermediate state between disarmed and armed -in which non-throttling actuators are active. +Condition to enter the prearmed state, an intermediate state between disarmed and armed in which non-throttling actuators are active. **Values:** @@ -16684,8 +15043,7 @@ Set action after a quadchute. Maximum allowed RAM usage to pass checks. -The check fails if the RAM usage is above this threshold. -A negative value disables the check. +The check fails if the RAM usage is above this threshold. A negative value disables the check. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16693,63 +15051,53 @@ A negative value disables the check. ### COM_RCL_EXCEPT (`INT32`) {#COM_RCL_EXCEPT} -Manual control loss exceptions. +RC loss exceptions. -Specify modes where manual control loss is ignored and no failsafe is triggered. -External modes requiring stick input will still failsafe. +Specify modes in which RC loss is ignored and the failsafe action not triggered. **Bitmask:** - `0`: Mission - `1`: Hold - `2`: Offboard -- `3`: External Mode -- `4`: Altitude Cruise | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 31 | | 0 | +| | 0 | 7 | | 0 | + +### COM_RC_ARM_HYST (`INT32`) {#COM_RC_ARM_HYST} + +RC input arm/disarm command duration. + +The default value of 1000 requires the stick to be held in the arm or disarm position for 1 second. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 100 | 1500 | | 1000 | ms | ### COM_RC_IN_MODE (`INT32`) {#COM_RC_IN_MODE} -Manual control input source configuration. +RC control input mode. -Selects stick input selection behavior: -either a traditional remote control receiver (RC) or a MAVLink joystick (MANUAL_CONTROL message) -Priority sources are immediately switched to whenever they get valid. -0 RC only. Requires valid RC calibration. -1 MAVLink only. RC and related checks are disabled. -2 Switches only if current source becomes invalid. -3 Locks to the first valid source until reboot. -4 Ignores all sources. -5 RC priority, then MAVLink (lower instance before higher) -6 MAVLink priority (lower instance before higher), then RC -7 RC priority, then MAVLink (higher instance before lower) -8 MAVLink priority (higher instance before lower), then RC +A value of 0 enables RC transmitter control (only). A valid RC transmitter calibration is required. A value of 1 allows joystick control only. RC input handling and the associated checks are disabled. A value of 2 allows either RC Transmitter or Joystick input. The first valid input is used, will fallback to other sources if the input stream becomes invalid. A value of 3 allows either input from RC or joystick. The first available source is selected and used until reboot. A value of 4 ignores any stick input. **Values:** -- `0`: RC only -- `1`: MAVLink only -- `2`: RC or MAVLink with fallback -- `3`: RC or MAVLink keep first -- `4`: Disable manual control -- `5`: Prio: RC > MAVL 1 > MAVL 2 -- `6`: Prio: MAVL 1 > MAVL 2 > RC -- `7`: Prio: RC > MAVL 2 > MAVL 1 -- `8`: Prio: MAVL 2 > MAVL 1 > RC +- `0`: RC Transmitter only +- `1`: Joystick only +- `2`: RC and Joystick with fallback +- `3`: RC or Joystick keep first +- `4`: Stick input disabled | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 8 | | 3 | +| | 0 | 4 | | 3 | ### COM_RC_LOSS_T (`FLOAT`) {#COM_RC_LOSS_T} Manual control loss timeout. -The time in seconds without a new setpoint from RC or Joystick, after which the connection is considered lost. -This must be kept short as the vehicle will use the last supplied setpoint until the timeout triggers. -Ensure the value is not set lower than the update interval of the RC or Joystick. +The time in seconds without a new setpoint from RC or Joystick, after which the connection is considered lost. This must be kept short as the vehicle will use the last supplied setpoint until the timeout triggers. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16757,12 +15105,9 @@ Ensure the value is not set lower than the update interval of the RC or Joystick ### COM_RC_OVERRIDE (`INT32`) {#COM_RC_OVERRIDE} -Enable manual control stick override. +Enable RC stick override of auto and/or offboard modes. -When enabled, moving the sticks more than COM_RC_STICK_OV -immediately gives control back to the pilot by switching to Position mode and -if position is unavailable Altitude mode. -Note: Only has an effect on multicopters, and VTOLs in multicopter mode. +When RC stick override is enabled, moving the RC sticks more than COM_RC_STICK_OV immediately gives control back to the pilot by switching to Position mode and if position is unavailable Altitude mode. Note: Only has an effect on multicopters, and VTOLs in multicopter mode. **Bitmask:** @@ -16775,10 +15120,9 @@ Note: Only has an effect on multicopters, and VTOLs in multicopter mode. ### COM_RC_STICK_OV (`FLOAT`) {#COM_RC_STICK_OV} -Stick override threshold. +RC stick override threshold. -If COM_RC_OVERRIDE is enabled and the joystick input is moved more than this threshold -the autopilot the pilot takes over control. +If COM_RC_OVERRIDE is enabled and the joystick input is moved more than this threshold the autopilot the pilot takes over control. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16788,12 +15132,7 @@ the autopilot the pilot takes over control. Enforced delay between arming and further navigation. -The minimal time from arming the motors until moving the vehicle is possible is COM_SPOOLUP_TIME seconds. -Goal: - -- Motors and propellers spool up to idle speed before getting commanded to spin faster -- Timeout for ESCs and smart batteries to successfulyy do failure checks - e.g. for stuck rotors before the vehicle is off the ground +The minimal time from arming the motors until moving the vehicle is possible is COM_SPOOLUP_TIME seconds. Goal: - Motors and propellers spool up to idle speed before getting commanded to spin faster - Timeout for ESCs and smart batteries to successfulyy do failure checks e.g. for stuck rotors before the vehicle is off the ground | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16828,10 +15167,7 @@ Allows to start the vehicle by throwing it into the air. Minimum speed for the throw start. -When the throw launch is enabled, the drone will only allow motors to spin after this speed -is exceeded before detecting the freefall. This is a safety feature to ensure the drone does -not turn on after accidental drop or a rapid movement before the throw. -Set to 0 to disable. +When the throw launch is enabled, the drone will only allow motors to spin after this speed is exceeded before detecting the freefall. This is a safety feature to ensure the drone does not turn on after accidental drop or a rapid movement before the throw. Set to 0 to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16841,10 +15177,7 @@ Set to 0 to disable. Horizontal velocity error threshold. -This is the horizontal velocity error (EVH) threshold that will trigger a failsafe. -The default is appropriate for a multicopter. Can be increased for a fixed-wing. -If the previous velocity error was below this threshold, there is an additional -factor of 2.5 applied (threshold for invalidation 2.5 times the one for validation). +This is the horizontal velocity error (EVH) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing. If the previous velocity error was below this threshold, there is an additional factor of 2.5 applied (threshold for invalidation 2.5 times the one for validation). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16854,8 +15187,7 @@ factor of 2.5 applied (threshold for invalidation 2.5 times the one for validati High wind speed failsafe threshold. -Wind speed threshold above which an automatic failsafe action is triggered. -Failsafe action can be specified with COM_WIND_MAX_ACT. +Wind speed threshold above which an automatic failsafe action is triggered. Failsafe action can be specified with COM_WIND_MAX_ACT. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16865,11 +15197,7 @@ Failsafe action can be specified with COM_WIND_MAX_ACT. High wind failsafe mode. -Action the system takes when a wind speed above the specified threshold is detected. -See COM_WIND_MAX to set the failsafe threshold. -If enabled, it is not possible to resume the mission or switch to any auto mode other than -RTL or Land if this threshold is exceeded. Taking over in any manual -mode is still possible. +Action the system takes when a wind speed above the specified threshold is detected. See COM_WIND_MAX to set the failsafe threshold. If enabled, it is not possible to resume the mission or switch to any auto mode other than RTL or Land if this threshold is exceeded. Taking over in any manual mode is still possible. **Values:** @@ -16888,9 +15216,7 @@ mode is still possible. Wind speed warning threshold. -A warning is triggered if the currently estimated wind speed is above this value. -Warning is sent periodically (every 1 minute). -Set to -1 to disable. +A warning is triggered if the currently estimated wind speed is above this value. Warning is sent periodically (every 1 minute). Set to -1 to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -16900,9 +15226,7 @@ Set to -1 to disable. Set GCS connection loss failsafe mode. -The GCS connection loss failsafe will only be entered after a timeout, -set by COM_DL_LOSS_T in seconds. Once the timeout occurs the selected -action will be executed. +The GCS connection loss failsafe will only be entered after a timeout, set by COM_DL_LOSS_T in seconds. Once the timeout occurs the selected action will be executed. **Values:** @@ -16919,10 +15243,9 @@ action will be executed. ### NAV_RCL_ACT (`INT32`) {#NAV_RCL_ACT} -Set manual control loss failsafe mode. +Set RC loss failsafe mode. -The manual control loss failsafe will only be entered after a timeout, -set by COM_RC_LOSS_T in seconds. +The RC loss failsafe will only be entered after a timeout, set by COM_RC_LOSS_T in seconds. If RC input checks have been disabled by setting the COM_RC_IN_MODE param it will not be triggered. **Values:** @@ -16950,8 +15273,7 @@ UAVCAN/CAN v1 bus bitrate. Cyphal. -0 - Cyphal disabled. -1 - Enables Cyphal +0 - Cyphal disabled. 1 - Enables Cyphal | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -16961,7 +15283,7 @@ Cyphal. Cyphal Node ID. -Read the specs at https://opencyphal.org/ to learn more about Node ID. +Read the specs at http://uavcan.org to learn more about Node ID. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -17149,8 +15471,7 @@ sensor_gps uORB over Cyphal publication port ID. DSHOT 3D deadband high. -When the actuator_output is between DSHOT_3D_DEAD_L and DSHOT_3D_DEAD_H, motor will not spin. -This value is with respect to the mixer_module range (0-1999), not the DSHOT values. +When the actuator_output is between DSHOT_3D_DEAD_L and DSHOT_3D_DEAD_H, motor will not spin. This value is with respect to the mixer_module range (0-1999), not the DSHOT values. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -17160,8 +15481,7 @@ This value is with respect to the mixer_module range (0-1999), not the DSHOT val DSHOT 3D deadband low. -When the actuator_output is between DSHOT_3D_DEAD_L and DSHOT_3D_DEAD_H, motor will not spin. -This value is with respect to the mixer_module range (0-1999), not the DSHOT values. +When the actuator_output is between DSHOT_3D_DEAD_L and DSHOT_3D_DEAD_H, motor will not spin. This value is with respect to the mixer_module range (0-1999), not the DSHOT values. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -17171,11 +15491,7 @@ This value is with respect to the mixer_module range (0-1999), not the DSHOT val Allows for 3d mode when using DShot and suitable mixer. -WARNING: ESC must be configured for 3D mode, and DSHOT_MIN set to 0. -This splits the throttle ranges in two. -Direction 1) 48 is the slowest, 1047 is the fastest. -Direction 2) 1049 is the slowest, 2047 is the fastest. -When mixer outputs 1000 or value inside DSHOT 3D deadband, DShot 0 is sent. +WARNING: ESC must be configured for 3D mode, and DSHOT_MIN set to 0. This splits the throttle ranges in two. Direction 1) 48 is the slowest, 1047 is the fastest. Direction 2) 1049 is the slowest, 2047 is the fastest. When mixer outputs 1000 or value inside DSHOT 3D deadband, DShot 0 is sent. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -17185,9 +15501,7 @@ When mixer outputs 1000 or value inside DSHOT 3D deadband, DShot 0 is sent. Enable bidirectional DShot. -This parameter enables bidirectional DShot which provides RPM feedback. -Note that this requires ESCs that support bidirectional DSHot, e.g. BlHeli32. -This is not the same as DShot telemetry which requires an additional serial connection. +This parameter enables bidirectional DShot which provides RPM feedback. Note that this requires ESCs that support bidirectional DSHot, e.g. BlHeli32. This is not the same as DShot telemetry which requires an additional serial connection. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------------ | ---- | @@ -17197,13 +15511,11 @@ This is not the same as DShot telemetry which requires an additional serial conn Minimum DShot Motor Output. -Minimum Output Value for DShot in percent. The value depends on the ESC. Make -sure to set this high enough so that the motors are always spinning while -armed. +Minimum Output Value for DShot in percent. The value depends on the ESC. Make sure to set this high enough so that the motors are always spinning while armed. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1 | 0.01 | 0.055 | norm | +| | 0 | 1 | 0.01 | 0.055 | % | ### DSHOT_TEL_CFG (`INT32`) {#DSHOT_TEL_CFG} @@ -17234,10 +15546,7 @@ Configure on which serial port to run DShot Driver. Number of magnetic poles of the motors. -Specify the number of magnetic poles of the motors. -It is required to compute the RPM value from the eRPM returned with the ESC telemetry. -Either get the number from the motor spec sheet or count the magnets on the bell of the motor (not the stator magnets). -Typical motors for 5 inch props have 14 poles. +Specify the number of magnetic poles of the motors. It is required to compute the RPM value from the eRPM returned with the ESC telemetry. Either get the number from the motor spec sheet or count the magnets on the bell of the motor (not the stator magnets). Typical motors for 5 inch props have 14 poles. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -17342,21 +15651,6 @@ Sets the number of standard deviations used by the innovation consistency test. | ------ | -------- | -------- | --------- | ------- | ---- | | | 1.0 | | | 3.0 | SD | -### EKF2_AGP_MODE (`INT32`) {#EKF2_AGP_MODE} - -Fusion reset mode. - -Automatic: reset on fusion timeout if no other source of position is available Dead-reckoning: reset on fusion timeout if no source of velocity is available - -**Values:** - -- `0`: Automatic -- `1`: Dead-reckoning - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - ### EKF2_AGP_NOISE (`FLOAT`) {#EKF2_AGP_NOISE} Measurement noise for aux global position measurements. @@ -17544,16 +15838,6 @@ EKF2 enable. | ------ | -------- | -------- | --------- | ----------- | ---- | | | | | | Enabled (1) | -### EKF2_ENGINE_WRM (`INT32`) {#EKF2_ENGINE_WRM} - -Enable constant position fusion during engine warmup. - -When enabled, constant position fusion is enabled when the vehicle is landed and armed. This is intended for IC engine warmup (e.g., fuel engines on catapult) to allow mode transitions to auto/takeoff despite vibrations from running engines. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------------ | ---- | -| | | | | Disabled (0) | - ### EKF2_EVA_NOISE (`FLOAT`) {#EKF2_EVA_NOISE} Measurement noise for vision angle measurements. @@ -17740,12 +16024,10 @@ Each threshold value is defined by the parameter indicated next to the check. Dr - `7`: Horizontal speed offset (EKF2_REQ_HDRIFT) - `8`: Vertical speed offset (EKF2_REQ_VDRIFT) - `9`: Spoofing -- `10`: GPS fix type (EKF2_REQ_FIX) -- `11`: Jamming | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 4095 | | 2047 | +| | 0 | 1023 | | 1023 | ### EKF2_GPS_CTRL (`INT32`) {#EKF2_GPS_CTRL} @@ -17766,34 +16048,17 @@ Set bits in the following positions to enable: 0 : Longitude and latitude fusion ### EKF2_GPS_DELAY (`FLOAT`) {#EKF2_GPS_DELAY} -GPS measurement delay relative to IMU measurement. - -GPS measurement delay relative to IMU measurement if PPS time correction is not available/enabled (PPS_CAP_ENABLE). +GPS measurement delay relative to IMU measurements. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | | ✓ | 0 | 300 | | 110 | ms | -### EKF2_GPS_MODE (`INT32`) {#EKF2_GPS_MODE} - -Fusion reset mode. - -Automatic: reset on fusion timeout if no other source of position is available. Dead-reckoning: reset on fusion timeout if no source of velocity is available. - -**Values:** - -- `0`: Automatic -- `1`: Dead-reckoning - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 0 | - ### EKF2_GPS_POS_X (`FLOAT`) {#EKF2_GPS_POS_X} X position of GPS antenna in body frame. -Forward (roll) axis with origin relative to vehicle centre of gravity +Forward axis with origin relative to vehicle centre of gravity | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -17803,7 +16068,7 @@ Forward (roll) axis with origin relative to vehicle centre of gravity Y position of GPS antenna in body frame. -Right (pitch) axis with origin relative to vehicle centre of gravity +Forward axis with origin relative to vehicle centre of gravity | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -17813,7 +16078,7 @@ Right (pitch) axis with origin relative to vehicle centre of gravity Z position of GPS antenna in body frame. -Down (yaw) axis with origin relative to vehicle centre of gravity +Forward axis with origin relative to vehicle centre of gravity | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -18125,7 +16390,7 @@ If the vehicle is on ground, is not moving as determined by the motion test and | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.01 | | | 0.01 | m | +| | 0.01 | | | 0.1 | m | ### EKF2_MULTI_IMU (`INT32`) {#EKF2_MULTI_IMU} @@ -18356,26 +16621,6 @@ Required EPV to use GPS. | ------ | -------- | -------- | --------- | ------- | ---- | | | 2 | 100 | | 5.0 | m | -### EKF2_REQ_FIX (`INT32`) {#EKF2_REQ_FIX} - -Required GPS fix. - -Minimum GPS fix type required for GPS usage. - -**Values:** - -- `0`: No fix required -- `2`: 2D fix -- `3`: 3D fix -- `4`: RTCM code differential -- `5`: RTK float -- `6`: RTK fixed -- `8`: Extrapolated - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 3 | - ### EKF2_REQ_GPS_H (`FLOAT`) {#EKF2_REQ_GPS_H} Required GPS health time on startup. @@ -18436,6 +16681,16 @@ If the vehicle absolute altitude exceeds this value then the estimator will not | ------ | -------- | -------- | --------- | ------- | ---- | | | 1.0 | 10.0 | | 5.0 | m | +### EKF2_RNG_A_IGATE (`FLOAT`) {#EKF2_RNG_A_IGATE} + +Gate size used for innovation consistency checks for range aid fusion. + +A lower value means HAGL needs to be more stable in order to use range finder for height estimation in range aid mode + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.1 | 5.0 | | 1.0 | SD | + ### EKF2_RNG_A_VMAX (`FLOAT`) {#EKF2_RNG_A_VMAX} Maximum horizontal velocity allowed for conditional range aid mode. @@ -18720,11 +16975,7 @@ Required esc hardware version. RC Loss Alarm. -Enable/disable event task for RC Loss. When enabled, an alarm tune will be -played via buzzer or ESCs, if supported. The alarm will sound after a disarm, -if the vehicle was previously armed and only if the vehicle had RC signal at -some point. Particularly useful for locating crashed drones without a GPS -sensor. +Enable/disable event task for RC Loss. When enabled, an alarm tune will be played via buzzer or ESCs, if supported. The alarm will sound after a disarm, if the vehicle was previously armed and only if the vehicle had RC signal at some point. Particularly useful for locating crashed drones without a GPS sensor. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------------ | ---- | @@ -18734,12 +16985,7 @@ sensor. Status Display. -Enable/disable event task for displaying the vehicle status using arm-mounted -LEDs. When enabled and if the vehicle supports it, LEDs will flash -indicating various vehicle status changes. Currently PX4 has not implemented -any specific status events. - -- +Enable/disable event task for displaying the vehicle status using arm-mounted LEDs. When enabled and if the vehicle supports it, LEDs will flash indicating various vehicle status changes. Currently PX4 has not implemented any specific status events. - | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------------ | ---- | @@ -18771,8 +17017,7 @@ Applies to both directions in all manual modes with attitude stabilization Maximum manually added yaw rate. -This is the maximally added yaw rate setpoint from the yaw stick in any attitude controlled flight mode. -It is added to the yaw rate setpoint generated by the controller for turn coordination. +This is the maximally added yaw rate setpoint from the yaw stick in any attitude controlled flight mode. It is added to the yaw rate setpoint generated by the controller for turn coordination. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -18782,9 +17027,7 @@ It is added to the yaw rate setpoint generated by the controller for turn coordi Pitch setpoint offset (pitch at level flight). -An airframe specific offset of the pitch setpoint in degrees, the value is -added to the pitch setpoint and should correspond to the pitch at -typical cruise speed of the airframe. +An airframe specific offset of the pitch setpoint in degrees, the value is added to the pitch setpoint and should correspond to the pitch at typical cruise speed of the airframe. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -18810,8 +17053,7 @@ Maximum positive / up pitch rate setpoint. Attitude pitch time constant. -This defines the latency between a pitch step input and the achieved setpoint -(inverse to a P gain). Smaller systems may require smaller values. +This defines the latency between a pitch step input and the achieved setpoint (inverse to a P gain). Smaller systems may require smaller values. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -18829,8 +17071,7 @@ Maximum roll rate setpoint. Attitude Roll Time Constant. -This defines the latency between a roll step input and the achieved setpoint -(inverse to a P gain). Smaller systems may require smaller values. +This defines the latency between a roll step input and the achieved setpoint (inverse to a P gain). Smaller systems may require smaller values. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -18848,8 +17089,7 @@ Wheel steering rate feed forward. Wheel steering rate integrator gain. -This gain defines how much control response will result out of a steady -state error. It trims any constant error. +This gain defines how much control response will result out of a steady state error. It trims any constant error. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -18867,8 +17107,7 @@ Wheel steering rate integrator limit. Wheel steering rate proportional gain. -This defines how much the wheel steering input will be commanded depending on the -current body angular rate error. +This defines how much the wheel steering input will be commanded depending on the current body angular rate error. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ------- | @@ -18878,8 +17117,7 @@ current body angular rate error. Enable wheel steering controller. -Only enabled during automatic runway takeoff and landing. -In all manual modes the wheel is directly controlled with yaw stick. +Only enabled during automatic runway takeoff and landing. In all manual modes the wheel is directly controlled with yaw stick. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -18889,8 +17127,7 @@ In all manual modes the wheel is directly controlled with yaw stick. Maximum wheel steering rate. -This limits the maximum wheel steering rate the controller will output (in degrees per -second). +This limits the maximum wheel steering rate the controller will output (in degrees per second). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -18910,8 +17147,7 @@ Maximum yaw rate setpoint. Flaps setting during landing. -Sets a fraction of full flaps during landing. -Also applies to flaperons if enabled in the mixer/allocation. +Sets a fraction of full flaps during landing. Also applies to flaperons if enabled in the mixer/allocation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -18921,13 +17157,7 @@ Also applies to flaperons if enabled in the mixer/allocation. Bit mask to set the automatic landing abort conditions. -Terrain estimation: -bit 0: Abort if terrain is not found -bit 1: Abort if terrain times out (after a first successful measurement) -The last estimate is always used as ground, whether the last valid measurement or the land waypoint, depending on the -selected abort criteria, until an abort condition is entered. If FW_LND_USETER == 0, these bits are ignored. -TODO: Extend automatic abort conditions -e.g. glide slope tracking error (horizontal and vertical) +Terrain estimation: bit 0: Abort if terrain is not found bit 1: Abort if terrain times out (after a first successful measurement) The last estimate is always used as ground, whether the last valid measurement or the land waypoint, depending on the selected abort criteria, until an abort condition is entered. If FW_LND_USETER == 0, these bits are ignored. TODO: Extend automatic abort conditions e.g. glide slope tracking error (horizontal and vertical) **Bitmask:** @@ -18942,8 +17172,7 @@ e.g. glide slope tracking error (horizontal and vertical) Landing airspeed. -The calibrated airspeed setpoint during landing. -If set <= 0, landing airspeed = FW_AIRSPD_MIN by default. +The calibrated airspeed setpoint during landing. If set <= 0, landing airspeed = FW_AIRSPD_MIN by default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -18953,20 +17182,17 @@ If set <= 0, landing airspeed = FW_AIRSPD_MIN by default. Maximum landing slope angle. -Typically the desired landing slope angle when landing configuration (flaps, airspeed) is enabled. -Set this value within the vehicle's performance limits. +Typically the desired landing slope angle when landing configuration (flaps, airspeed) is enabled. Set this value within the vehicle's performance limits. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 1.0 | 45.0 | 0.5 | 5.0 | deg | +| | 1.0 | 15.0 | 0.5 | 5.0 | deg | ### FW_LND_EARLYCFG (`INT32`) {#FW_LND_EARLYCFG} Early landing configuration deployment. -Allows to deploy the landing configuration (flaps, landing airspeed, etc.) already in -the loiter-down waypoint before the final approach. -Otherwise is enabled only in the final approach. +Allows to deploy the landing configuration (flaps, landing airspeed, etc.) already in the loiter-down waypoint before the final approach. Otherwise is enabled only in the final approach. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -19016,9 +17242,7 @@ TECS will attempt to control the aircraft to this sink rate via pitch angle (thr Landing flare time. -Multiplied by the descent rate to calculate a dynamic altitude at which -to trigger the flare. -NOTE: max(FW_LND_FLALT, FW_LND_FL_TIME \* descent rate) is taken as the flare altitude +Multiplied by the descent rate to calculate a dynamic altitude at which to trigger the flare. NOTE: max(FW_LND_FLALT, FW_LND_FL_TIME \* descent rate) is taken as the flare altitude | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19028,11 +17252,7 @@ NOTE: max(FW_LND_FLALT, FW_LND_FL_TIME \* descent rate) is taken as the flare al Landing touchdown nudging option. -Approach angle nudging: shifts the touchdown point laterally while keeping the approach entrance point constant -Approach path nudging: shifts the touchdown point laterally along with the entire approach path -This is useful for manually adjusting the landing point in real time when map or GNSS errors cause an offset from the -desired landing vector. Nudging is done with yaw stick, constrained to FW_LND_TD_OFF (in meters) and the direction is -relative to the vehicle heading (stick deflection to the right = land point moves to the right as seen by the vehicle). +Approach angle nudging: shifts the touchdown point laterally while keeping the approach entrance point constant Approach path nudging: shifts the touchdown point laterally along with the entire approach path This is useful for manually adjusting the landing point in real time when map or GNSS errors cause an offset from the desired landing vector. Nudging is done with yaw stick, constrained to FW_LND_TD_OFF (in meters) and the direction is relative to the vehicle heading (stick deflection to the right = land point moves to the right as seen by the vehicle). **Values:** @@ -19056,11 +17276,7 @@ Maximum lateral position offset for the touchdown point. Landing touchdown time (since flare start). -This is the time after the start of flaring that we expect the vehicle to touch the runway. -At this time, a 0.5s clamp down ramp will engage, constraining the pitch setpoint to RWTO_PSP. -If enabled, ensure that RWTO_PSP is configured appropriately for full gear contact on ground roll. -Set to -1.0 to disable touchdown clamping. E.g. it may not be desirable to clamp on belly landings. -The touchdown time will be constrained to be greater than or equal to the flare time (FW_LND_FL_TIME). +This is the time after the start of flaring that we expect the vehicle to touch the runway. At this time, a 0.5s clamp down ramp will engage, constraining the pitch setpoint to RWTO_PSP. If enabled, ensure that RWTO_PSP is configured appropriately for full gear contact on ground roll. Set to -1.0 to disable touchdown clamping. E.g. it may not be desirable to clamp on belly landings. The touchdown time will be constrained to be greater than or equal to the flare time (FW_LND_FL_TIME). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19080,10 +17296,7 @@ The TECS altitude time constant (FW_T_ALT_TC) is multiplied by this value. Use terrain estimation during landing. -This is critical for detecting when to flare, and should be enabled if possible. -If enabled and no measurement is found within a given timeout, the landing waypoint altitude will be used OR the landing -will be aborted, depending on the criteria set in FW_LND_ABORT. -If disabled, FW_LND_ABORT terrain based criteria are ignored. +This is critical for detecting when to flare, and should be enabled if possible. If enabled and no measurement is found within a given timeout, the landing waypoint altitude will be used OR the landing will be aborted, depending on the criteria set in FW_LND_ABORT. If disabled, FW_LND_ABORT terrain based criteria are ignored. **Values:** @@ -19109,8 +17322,7 @@ Spoiler landing setting. Flaps setting during take-off. -Sets a fraction of full flaps during take-off. -Also applies to flaperons if enabled in the mixer/allocation. +Sets a fraction of full flaps during take-off. Also applies to flaperons if enabled in the mixer/allocation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19140,8 +17352,7 @@ Launch is detected when acceleration in body forward direction is above FW_LAUN_ Fixed-wing launch detection. -Enables automatic launch detection based on measured acceleration. Use for hand- or catapult-launched vehicles. -Not compatible with runway takeoff. +Enables automatic launch detection based on measured acceleration. Use for hand- or catapult-launched vehicles. Not compatible with runway takeoff. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -19161,8 +17372,7 @@ Start the motor(s) this amount of seconds after launch is detected. Takeoff Airspeed. -The calibrated airspeed setpoint during the takeoff climbout. -If set <= 0, FW_AIRSPD_MIN will be set by default. +The calibrated airspeed setpoint during the takeoff climbout. If set <= 0, FW_AIRSPD_MIN will be set by default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19174,7 +17384,7 @@ Minimum pitch during takeoff. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -5.0 | 80.0 | 0.5 | 10.0 | deg | +| | -5.0 | 30.0 | 0.5 | 10.0 | deg | ## FW General @@ -19182,13 +17392,11 @@ Minimum pitch during takeoff. GPS failure loiter time. -The time the system should do open loop loiter and wait for GPS recovery -before it starts descending. Set to 0 to disable. Roll angle is set to FW_GPSF_R. -Does only apply for fixed-wing vehicles or VTOLs with NAV_FORCE_VT set to 0. +The time the system should do open loop loiter and wait for GPS recovery before it starts descending. Set to 0 to disable. Roll angle is set to FW_GPSF_R. Does only apply for fixed-wing vehicles or VTOLs with NAV_FORCE_VT set to 0. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | | | 30 | s | +| | 0 | 3600 | | 30 | s | ### FW_GPSF_R (`FLOAT`) {#FW_GPSF_R} @@ -19198,7 +17406,7 @@ Roll angle in GPS failure loiter mode. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | 60.0 | 0.5 | 15.0 | deg | +| | 0.0 | 30.0 | 0.5 | 15.0 | deg | ### FW_POS_STK_CONF (`INT32`) {#FW_POS_STK_CONF} @@ -19223,7 +17431,7 @@ Applies in any altitude controlled flight mode. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | 80.0 | 0.5 | 30.0 | deg | +| | 0.0 | 60.0 | 0.5 | 30.0 | deg | ### FW_P_LIM_MIN (`FLOAT`) {#FW_P_LIM_MIN} @@ -19243,7 +17451,7 @@ Applies in any altitude controlled flight mode. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 35.0 | 75.0 | 0.5 | 50.0 | deg | +| | 35.0 | 65.0 | 0.5 | 50.0 | deg | ### FW_THR_IDLE (`FLOAT`) {#FW_THR_IDLE} @@ -19253,14 +17461,13 @@ This is the minimum throttle while on the ground ("landed") in auto modes. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | 1.0 | 0.01 | 0.0 | norm | +| | 0.0 | 0.4 | 0.01 | 0.0 | norm | ### FW_THR_MAX (`FLOAT`) {#FW_THR_MAX} Throttle limit max. -Applies in any altitude controlled flight mode. -Should be set accordingly to achieve FW_T_CLMB_MAX. +Applies in any altitude controlled flight mode. Should be set accordingly to achieve FW_T_CLMB_MAX. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19270,9 +17477,7 @@ Should be set accordingly to achieve FW_T_CLMB_MAX. Throttle limit min. -Applies in any altitude controlled flight mode. -Usually set to 0 but can be increased to prevent the motor from stopping when -descending, which can increase achievable descent rates. +Applies in any altitude controlled flight mode. Usually set to 0 but can be increased to prevent the motor from stopping when descending, which can increase achievable descent rates. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19282,32 +17487,27 @@ descending, which can increase achievable descent rates. Default target climbrate. -In auto modes: default climb rate output by controller to achieve altitude setpoints. -In manual modes: maximum climb rate setpoint. +In auto modes: default climb rate output by controller to achieve altitude setpoints. In manual modes: maximum climb rate setpoint. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.1 | | 0.01 | 3.0 | m/s | +| | 0.5 | 15 | 0.01 | 3.0 | m/s | ### FW_T_SINK_R_SP (`FLOAT`) {#FW_T_SINK_R_SP} Default target sinkrate. -In auto modes: default sink rate output by controller to achieve altitude setpoints. -In manual modes: maximum sink rate setpoint. +In auto modes: default sink rate output by controller to achieve altitude setpoints. In manual modes: maximum sink rate setpoint. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.1 | | 0.01 | 2.0 | m/s | +| | 0.5 | 15 | 0.01 | 2.0 | m/s | ### FW_T_SPDWEIGHT (`FLOAT`) {#FW_T_SPDWEIGHT} Speed <--> Altitude weight. -Adjusts the amount of weighting that the pitch control -applies to speed vs height errors. -0 -> control height only -2 -> control speed only (gliders) +Adjusts the amount of weighting that the pitch control applies to speed vs height errors. 0 -> control height only 2 -> control speed only (gliders) | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19317,8 +17517,7 @@ applies to speed vs height errors. Height (AGL) of the wings when the aircraft is on the ground. -This is used to constrain a minimum altitude below which we keep wings level to avoid wing tip strike. It's safer -to give a slight margin here (> 0m) +This is used to constrain a minimum altitude below which we keep wings level to avoid wing tip strike. It's safer to give a slight margin here (> 0m) | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19340,8 +17539,7 @@ This is used for limiting the roll setpoint near the ground. (if multiple wings, Path navigation roll slew rate limit. -Maximum change in roll angle setpoint per second. -Applied in all Auto modes, plus manual Position & Altitude modes. +Maximum change in roll angle setpoint per second. Applied in all Auto modes, plus manual Position & Altitude modes. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -19353,8 +17551,7 @@ Applied in all Auto modes, plus manual Position & Altitude modes. Minimum groundspeed. -The controller will increase the commanded airspeed to maintain -this minimum groundspeed to the next waypoint. +The controller will increase the commanded airspeed to maintain this minimum groundspeed to the next waypoint. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19382,8 +17579,7 @@ Altitude error time constant. Fast descend: minimum altitude error. -Minimum altitude error needed to descend with max airspeed and minimal throttle. -A negative value disables fast descend. +Minimum altitude error needed to descend with max airspeed and minimal throttle. A negative value disables fast descend. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19401,8 +17597,7 @@ Height rate feed forward. Integrator gain pitch. -Increase it to trim out speed and height offsets faster, -with the downside of possible overshoots and oscillations. +Increase it to trim out speed and height offsets faster, with the downside of possible overshoots and oscillations. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19420,9 +17615,7 @@ Pitch damping gain. Roll -> Throttle feedforward. -Is used to compensate for the additional drag created by turning. -Increase this gain if the aircraft initially loses energy in turns -and reduce if the aircraft initially gains energy in turns. +Is used to compensate for the additional drag created by turning. Increase this gain if the aircraft initially loses energy in turns and reduce if the aircraft initially gains energy in turns. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19458,8 +17651,7 @@ For the airspeed filter in TECS. Process noise standard deviation for the airspeed rate. -This is defining the noise in the airspeed rate for the constant airspeed rate model -of the TECS airspeed filter. +This is defining the noise in the airspeed rate for the constant airspeed rate model of the TECS airspeed filter. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -19507,8 +17699,7 @@ This is the damping gain for the throttle demand loop. Integrator gain throttle. -Increase it to trim out speed and height offsets faster, -with the downside of possible overshoots and oscillations. +Increase it to trim out speed and height offsets faster, with the downside of possible overshoots and oscillations. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19518,11 +17709,7 @@ with the downside of possible overshoots and oscillations. Low-height threshold for tighter altitude tracking. -Height above ground threshold below which tighter altitude -tracking gets enabled (see FW_LND_THRTC_SC). Below this height, TECS smoothly -(1 sec / sec) transitions the altitude tracking time constant from FW_T_ALT_TC -to FW_LND_THRTC_SC\*FW_T_ALT_TC. --1 to disable. +Height above ground threshold below which tighter altitude tracking gets enabled (see FW_LND_THRTC_SC). Below this height, TECS smoothly (1 sec / sec) transitions the altitude tracking time constant from FW_T_ALT_TC to FW_LND_THRTC_SC\*FW_T_ALT_TC. -1 to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19532,9 +17719,7 @@ to FW_LND_THRTC_SC\*FW_T_ALT_TC. Maximum vertical acceleration. -This is the maximum vertical acceleration -either up or down that the controller will use to correct speed -or height errors. +This is the maximum vertical acceleration either up or down that the controller will use to correct speed or height errors. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -19544,9 +17729,7 @@ or height errors. Wind-based airspeed scaling factor. -Multiplying this factor with the current absolute wind estimate gives the airspeed offset -added to the minimum airspeed setpoint limit. This helps to make the -system more robust against disturbances (turbulence) in high wind. +Multiplying this factor with the current absolute wind estimate gives the airspeed offset added to the minimum airspeed setpoint limit. This helps to make the system more robust against disturbances (turbulence) in high wind. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19568,8 +17751,7 @@ Damping ratio of NPFG control law. Enable automatic lower bound on the NPFG period. -Avoids limit cycling from a too aggressively tuned period/damping combination. -If false, also disables upper bound NPFG_PERIOD_UB. +Avoids limit cycling from a too aggressively tuned period/damping combination. If false, also disables upper bound NPFG_PERIOD_UB. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -19589,8 +17771,7 @@ Period of NPFG control law. Period safety factor. -Multiplied by period for conservative minimum period bounding (when period lower -bounding is enabled). 1.0 bounds at marginal stability. +Multiplied by period for conservative minimum period bounding (when period lower bounding is enabled). 1.0 bounds at marginal stability. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19600,8 +17781,7 @@ bounding is enabled). 1.0 bounds at marginal stability. Roll time constant. -Time constant of roll controller command / response, modeled as first order delay. -Used to determine lower period bound. Setting zero disables automatic period bounding. +Time constant of roll controller command / response, modeled as first order delay. Used to determine lower period bound. Setting zero disables automatic period bounding. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19611,8 +17791,7 @@ Used to determine lower period bound. Setting zero disables automatic period bou NPFG switch distance multiplier. -Multiplied by the track error boundary to determine when the aircraft switches -to the next waypoint and/or path segment. Should be less than 1. +Multiplied by the track error boundary to determine when the aircraft switches to the next waypoint and/or path segment. Should be less than 1. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19654,13 +17833,7 @@ The maximal airspeed (calibrated airspeed) the user is able to command. Minimum Airspeed (CAS). -The minimal airspeed (calibrated airspeed) the user is able to command. -Further, if the airspeed falls below this value, the TECS controller will try to -increase airspeed more aggressively. -Has to be set according to the vehicle's stall speed (which should be set in FW_AIRSPD_STALL), -with some margin between the stall speed and minimum airspeed. -This value corresponds to the desired minimum speed with the default load factor (level flight, default weight), -and is automatically adpated to the current load factor (calculated from roll setpoint and WEIGHT_GROSS/WEIGHT_BASE). +The minimal airspeed (calibrated airspeed) the user is able to command. Further, if the airspeed falls below this value, the TECS controller will try to increase airspeed more aggressively. Has to be set according to the vehicle's stall speed (which should be set in FW_AIRSPD_STALL), with some margin between the stall speed and minimum airspeed. This value corresponds to the desired minimum speed with the default load factor (level flight, default weight), and is automatically adpated to the current load factor (calculated from roll setpoint and WEIGHT_GROSS/WEIGHT_BASE). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19670,9 +17843,7 @@ and is automatically adpated to the current load factor (calculated from roll se Stall Airspeed (CAS). -The stall airspeed (calibrated airspeed) of the vehicle. -It is used for airspeed sensor failure detection and for the control -surface scaling airspeed limits. +The stall airspeed (calibrated airspeed) of the vehicle. It is used for airspeed sensor failure detection and for the control surface scaling airspeed limits. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19682,9 +17853,7 @@ surface scaling airspeed limits. Trim (Cruise) Airspeed. -The trim CAS (calibrated airspeed) of the vehicle. If an airspeed controller is active, -this is the default airspeed setpoint that the controller will try to achieve. -This value corresponds to the trim airspeed with the default load factor (level flight, default weight). +The trim CAS (calibrated airspeed) of the vehicle. If an airspeed controller is active, this is the default airspeed setpoint that the controller will try to achieve. This value corresponds to the trim airspeed with the default load factor (level flight, default weight). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19694,9 +17863,7 @@ This value corresponds to the trim airspeed with the default load factor (level Service ceiling. -Altitude in standard atmosphere at which the vehicle in normal configuration (WEIGHT_BASE) is still able to achieve a maximum climb rate of -0.5m/s at maximum throttle (FW_THR_MAX). Used to compensate for air density in FW_T_CLMB_MAX. -Set negative to disable. +Altitude in standard atmosphere at which the vehicle in normal configuration (WEIGHT_BASE) is still able to achieve a maximum climb rate of 0.5m/s at maximum throttle (FW_THR_MAX). Used to compensate for air density in FW_T_CLMB_MAX. Set negative to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19706,8 +17873,7 @@ Set negative to disable. Throttle at max airspeed. -Required throttle (at sea level, standard atmosphere) for level flight at maximum airspeed FW_AIRSPD_MAX -Set to 0 to disable mapping of airspeed to trim throttle. +Required throttle (at sea level, standard atmosphere) for level flight at maximum airspeed FW_AIRSPD_MAX Set to 0 to disable mapping of airspeed to trim throttle. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19717,8 +17883,7 @@ Set to 0 to disable mapping of airspeed to trim throttle. Throttle at min airspeed. -Required throttle (at sea level, standard atmosphere) for level flight at minimum airspeed FW_AIRSPD_MIN -Set to 0 to disable mapping of airspeed to trim throttle below FW_AIRSPD_TRIM. +Required throttle (at sea level, standard atmosphere) for level flight at minimum airspeed FW_AIRSPD_MIN Set to 0 to disable mapping of airspeed to trim throttle below FW_AIRSPD_TRIM. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19738,33 +17903,27 @@ Required throttle (at sea level, standard atmosphere) for level flight at FW_AIR Maximum climb rate. -This is the maximum calibrated climb rate that the aircraft can achieve with -the throttle set to FW_THR_MAX and the airspeed set to the -trim value. For electric aircraft make sure this number can be -achieved towards the end of flight when the battery voltage has reduced. +This is the maximum calibrated climb rate that the aircraft can achieve with the throttle set to FW_THR_MAX and the airspeed set to the trim value. For electric aircraft make sure this number can be achieved towards the end of flight when the battery voltage has reduced. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 1.0 | | 0.5 | 5.0 | m/s | +| | 1.0 | 15.0 | 0.5 | 5.0 | m/s | ### FW_T_SINK_MIN (`FLOAT`) {#FW_T_SINK_MIN} Minimum descent rate. -This is the minimum calibrated sink rate of the aircraft with the throttle -set to THR_MIN and flown at the same airspeed as used -to measure FW_T_CLMB_MAX. +This is the minimum calibrated sink rate of the aircraft with the throttle set to THR_MIN and flown at the same airspeed as used to measure FW_T_CLMB_MAX. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 1.0 | | 0.5 | 2.0 | m/s | +| | 1.0 | 5.0 | 0.5 | 2.0 | m/s | ### WEIGHT_BASE (`FLOAT`) {#WEIGHT_BASE} Vehicle base weight. -This is the weight of the vehicle at which it's performance limits were derived. A zero or negative value -disables trim throttle and minimum airspeed compensation based on weight. +This is the weight of the vehicle at which it's performance limits were derived. A zero or negative value disables trim throttle and minimum airspeed compensation based on weight. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19774,9 +17933,7 @@ disables trim throttle and minimum airspeed compensation based on weight. Vehicle gross weight. -This is the actual weight of the vehicle at any time. This value will differ from WEIGHT_BASE in case weight was added -or removed from the base weight. Examples are the addition of payloads or larger batteries. A zero or negative value -disables trim throttle and minimum airspeed compensation based on weight. +This is the actual weight of the vehicle at any time. This value will differ from WEIGHT_BASE in case weight was added or removed from the base weight. Examples are the addition of payloads or larger batteries. A zero or negative value disables trim throttle and minimum airspeed compensation based on weight. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19796,10 +17953,7 @@ Acro body roll max rate setpoint. Enable yaw rate controller in Acro. -If this parameter is set to 1, the yaw rate controller is enabled in Fixed-wing Acro mode. -Otherwise the pilot commands directly the yaw actuator. -It is disabled by default because an active yaw rate controller will fight against the -natural turn coordination of the plane. +If this parameter is set to 1, the yaw rate controller is enabled in Fixed-wing Acro mode. Otherwise the pilot commands directly the yaw actuator. It is disabled by default because an active yaw rate controller will fight against the natural turn coordination of the plane. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -19825,11 +17979,7 @@ Acro body yaw max rate setpoint. Enable airspeed scaling. -This enables a logic that automatically adjusts the output of the rate controller to take -into account the real torque produced by an aerodynamic control surface given -the current deviation from the trim airspeed (FW_AIRSPD_TRIM). -Enable when using aerodynamic control surfaces (e.g.: plane) -Disable when using rotor wings (e.g.: autogyro) +This enables a logic that automatically adjusts the output of the rate controller to take into account the real torque produced by an aerodynamic control surface given the current deviation from the trim airspeed (FW_AIRSPD_TRIM). Enable when using aerodynamic control surfaces (e.g.: plane) Disable when using rotor wings (e.g.: autogyro) | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -19839,8 +17989,7 @@ Disable when using rotor wings (e.g.: autogyro) Enable throttle scale by battery level. -This compensates for voltage drop of the battery over time by attempting to -normalize performance across the operating range of the battery. +This compensates for voltage drop of the battery over time by attempting to normalize performance across the operating range of the battery. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -19906,30 +18055,11 @@ This increment is added to TRIM_YAW when airspeed is FW_AIRSPD_MIN. | ------ | -------- | -------- | --------- | ------- | ---- | | | -0.5 | 0.5 | 0.01 | 0.0 | -### FW_GC_EN (`INT32`) {#FW_GC_EN} - -Enable rate gain compression. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ----------- | ---- | -| | | | | Enabled (1) | - -### FW_GC_GAIN_MIN (`FLOAT`) {#FW_GC_GAIN_MIN} - -Compression gain lower limit. - -The range of the compression gain is between this parameter and 1.0 - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | 1.0 | 0.01 | 0.3 | - ### FW_MAN_P_SC (`FLOAT`) {#FW_MAN_P_SC} Manual pitch scale. -Scale factor applied to the desired pitch actuator command in full manual mode. This parameter allows -to adjust the throws of the control surfaces. +Scale factor applied to the desired pitch actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19939,8 +18069,7 @@ to adjust the throws of the control surfaces. Manual roll scale. -Scale factor applied to the desired roll actuator command in full manual mode. This parameter allows -to adjust the throws of the control surfaces. +Scale factor applied to the desired roll actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -19950,8 +18079,7 @@ to adjust the throws of the control surfaces. Manual yaw scale. -Scale factor applied to the desired yaw actuator command in full manual mode. This parameter allows -to adjust the throws of the control surfaces. +Scale factor applied to the desired yaw actuator command in full manual mode. This parameter allows to adjust the throws of the control surfaces. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20005,9 +18133,7 @@ Pitch rate proportional gain. Roll control to yaw control feedforward gain. -This gain can be used to counteract the "adverse yaw" effect for fixed wings. -When the plane enters a roll it will tend to yaw the nose out of the turn. -This gain enables the use of a yaw actuator to counteract this effect. +This gain can be used to counteract the "adverse yaw" effect for fixed wings. When the plane enters a roll it will tend to yaw the nose out of the turn. This gain enables the use of a yaw actuator to counteract this effect. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20075,12 +18201,7 @@ Chose source for manual setting of spoilers in manual flight modes. Use airspeed for control. -If set to 1, the airspeed measurement data, if valid, is used in the following controllers: - -- Rate controller: output scaling -- Attitude controller: coordinated turn controller -- Position controller: airspeed setpoint tracking, takeoff logic -- VTOL: transition logic +If set to 1, the airspeed measurement data, if valid, is used in the following controllers: - Rate controller: output scaling - Attitude controller: coordinated turn controller - Position controller: airspeed setpoint tracking, takeoff logic - VTOL: transition logic | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -20134,9 +18255,7 @@ Yaw rate proportional gain. Enable Actuator Failure check. -If enabled, failure detector will verify that for motors, a minimum amount of ESC current per throttle -level is being consumed. -Otherwise this indicates an motor failure. +If enabled, failure detector will verify that for motors, a minimum amount of ESC current per throttle level is being consumed. Otherwise this indicates an motor failure. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -20166,8 +18285,7 @@ Motor failure triggers only above this throttle value. Motor Failure Time Threshold. -Motor failure triggers only if the throttle threshold and the -current to throttle threshold are violated for this time. +Motor failure triggers only if the throttle threshold and the current to throttle threshold are violated for this time. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20177,8 +18295,7 @@ current to throttle threshold are violated for this time. Enable checks on ESCs that report their arming state. -If enabled, failure detector will verify that all the ESCs have successfully armed when the vehicle has transitioned to the armed state. -Timeout for receiving an acknowledgement from the ESCs is 0.3s, if no feedback is received the failure detector will auto disarm the vehicle. +If enabled, failure detector will verify that all the ESCs have successfully armed when the vehicle has transitioned to the armed state. Timeout for receiving an acknowledgement from the ESCs is 0.3s, if no feedback is received the failure detector will auto disarm the vehicle. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -20188,8 +18305,7 @@ Timeout for receiving an acknowledgement from the ESCs is 0.3s, if no feedback i Enable PWM input on for engaging failsafe from an external automatic trigger system (ATS). -Enabled on either AUX5 or MAIN5 depending on board. -External ATS is required by ASTM F3322-18. +Enabled on either AUX5 or MAIN5 depending on board. External ATS is required by ASTM F3322-18. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------------ | ---- | @@ -20209,12 +18325,7 @@ External ATS is required by ASTM F3322-18. FailureDetector Max Pitch. -Maximum pitch angle before FailureDetector triggers the attitude_failure flag. -The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), -which sets outputs to their failsafe values. -On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), -which disarms motors but does not set outputs to failsafe values. -Setting this parameter to 0 disables the check +Maximum pitch angle before FailureDetector triggers the attitude_failure flag. The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), which sets outputs to their failsafe values. On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), which disarms motors but does not set outputs to failsafe values. Setting this parameter to 0 disables the check | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20234,12 +18345,7 @@ Seconds (decimal) that pitch has to exceed FD_FAIL_P before being considered as FailureDetector Max Roll. -Maximum roll angle before FailureDetector triggers the attitude_failure flag. -The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), -which sets outputs to their failsafe values. -On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), -which disarms motors but does not set outputs to failsafe values. -Setting this parameter to 0 disables the check +Maximum roll angle before FailureDetector triggers the attitude_failure flag. The flag triggers flight termination (if @CBRK_FLIGHTTERM = 0), which sets outputs to their failsafe values. On takeoff the flag triggers lockdown (irrespective of @CBRK_FLIGHTTERM), which disarms motors but does not set outputs to failsafe values. Setting this parameter to 0 disables the check | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20259,9 +18365,7 @@ Seconds (decimal) that roll has to exceed FD_FAIL_R before being considered as a Imbalanced propeller check threshold. -Value at which the imbalanced propeller metric (based on horizontal and -vertical acceleration variance) triggers a failure -Setting this value to 0 disables the feature. +Value at which the imbalanced propeller metric (based on horizontal and vertical acceleration variance) triggers a failure Setting this value to 0 disables the feature. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20287,7 +18391,7 @@ Yaw behaviour during orbit flight. - `1`: Hold Initial Heading - `2`: Uncontrolled - `3`: Hold Front Tangent to Circle -- `4`: Manually (yaw stick) Controlled +- `4`: RC Controlled | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20299,10 +18403,7 @@ Yaw behaviour during orbit flight. Altitude control mode. -Maintain altitude or track target's altitude. When maintaining the altitude, -the drone can crash into terrain when the target moves uphill. When tracking -the target's altitude, the follow altitude FLW_TGT_HT should be high enough -to prevent terrain collisions due to GPS inaccuracies of the target. +Maintain altitude or track target's altitude. When maintaining the altitude, the drone can crash into terrain when the target moves uphill. When tracking the target's altitude, the follow altitude FLW_TGT_HT should be high enough to prevent terrain collisions due to GPS inaccuracies of the target. **Values:** @@ -20328,11 +18429,7 @@ The distance in meters to follow the target at Follow Angle setting in degrees. -Angle to follow the target from. 0.0 Equals straight in front of the target's -course (direction of motion) and the angle increases in clockwise direction, -meaning Right-side would be 90.0 degrees while Left-side is -90.0 degrees -Note: When the user force sets the angle out of the min/max range, it will be -wrapped (e.g. 480 -> 120) in the range to gracefully handle the out of range. +Angle to follow the target from. 0.0 Equals straight in front of the target's course (direction of motion) and the angle increases in clockwise direction, meaning Right-side would be 90.0 degrees while Left-side is -90.0 degrees Note: When the user force sets the angle out of the min/max range, it will be wrapped (e.g. 480 -> 120) in the range to gracefully handle the out of range. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20352,8 +18449,7 @@ Following height above the target Maximum tangential velocity setting for generating the follow orbit trajectory. -This is the maximum tangential velocity the drone will circle around the target whenever -an orbit angle setpoint changes. Higher value means more aggressive follow behavior. +This is the maximum tangential velocity the drone will circle around the target whenever an orbit angle setpoint changes. Higher value means more aggressive follow behavior. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20400,17 +18496,7 @@ Configure on which serial port to run Main GPS. GNSS Systems for Primary GPS (integer bitmask). -This integer bitmask controls the set of GNSS systems used by the receiver. Check your -receiver's documentation on how many systems are supported to be used in parallel. -Currently this functionality is just implemented for u-blox receivers. -When no bits are set, the receiver's default configuration should be used. -Set bits true to enable: -0 : Use GPS (with QZSS) -1 : Use SBAS (multiple GPS augmentation systems) -2 : Use Galileo -3 : Use BeiDou -4 : Use GLONASS -5 : Use NAVIC +This integer bitmask controls the set of GNSS systems used by the receiver. Check your receiver's documentation on how many systems are supported to be used in parallel. Currently this functionality is just implemented for u-blox receivers. When no bits are set, the receiver's default configuration should be used. Set bits true to enable: 0 : Use GPS (with QZSS) 1 : Use SBAS (multiple GPS augmentation systems) 2 : Use Galileo 3 : Use BeiDou 4 : Use GLONASS 5 : Use NAVIC **Bitmask:** @@ -20429,8 +18515,7 @@ Set bits true to enable: Protocol for Main GPS. -Select the GPS protocol over serial. -Auto-detection will probe all protocols, and thus is a bit slower. +Select the GPS protocol over serial. Auto-detection will probe all protocols, and thus is a bit slower. **Values:** @@ -20475,17 +18560,7 @@ Configure on which serial port to run Secondary GPS. GNSS Systems for Secondary GPS (integer bitmask). -This integer bitmask controls the set of GNSS systems used by the receiver. Check your -receiver's documentation on how many systems are supported to be used in parallel. -Currently this functionality is just implemented for u-blox receivers. -When no bits are set, the receiver's default configuration should be used. -Set bits true to enable: -0 : Use GPS (with QZSS) -1 : Use SBAS (multiple GPS augmentation systems) -2 : Use Galileo -3 : Use BeiDou -4 : Use GLONASS -5 : Use NAVIC +This integer bitmask controls the set of GNSS systems used by the receiver. Check your receiver's documentation on how many systems are supported to be used in parallel. Currently this functionality is just implemented for u-blox receivers. When no bits are set, the receiver's default configuration should be used. Set bits true to enable: 0 : Use GPS (with QZSS) 1 : Use SBAS (multiple GPS augmentation systems) 2 : Use Galileo 3 : Use BeiDou 4 : Use GLONASS 5 : Use NAVIC **Bitmask:** @@ -20504,8 +18579,7 @@ Set bits true to enable: Protocol for Secondary GPS. -Select the GPS protocol over serial. -Auto-detection will probe all protocols, and thus is a bit slower. +Select the GPS protocol over serial. Auto-detection will probe all protocols, and thus is a bit slower. **Values:** @@ -20521,28 +18595,11 @@ Auto-detection will probe all protocols, and thus is a bit slower. | ------- | -------- | -------- | --------- | ------- | ---- | | ✓ | 0 | 6 | | 1 | -### GPS_CFG_WIPE (`INT32`) {#GPS_CFG_WIPE} - -Wipes the flash config of UBX modules. - -Some UBX modules have a FLASH that allows to store persistent configuration that will be loaded on start. -PX4 does override all configuration parameters it needs in RAM, which takes precedence over the values in FLASH. -However, configuration parameters that are not overriden by PX4 can still cause unexpected problems during flight. -To avoid these kind of problems a clean config can be reached by wiping the FLASH on boot. -Note: Currently only supported on UBX. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------------ | ---- | -| ✓ | | | | Disabled (0) | - ### GPS_DUMP_COMM (`INT32`) {#GPS_DUMP_COMM} Log GPS communication data. -If this is set to 1, all GPS communication data will be published via uORB, -and written to the log file as gps_dump message. -If this is set to 2, the main GPS is configured to output RTCM data, -which is then logged as gps_dump and can be used for PPK. +If this is set to 1, all GPS communication data will be published via uORB, and written to the log file as gps_dump message. If this is set to 2, the main GPS is configured to output RTCM data, which is then logged as gps_dump and can be used for PPK. **Values:** @@ -20558,8 +18615,7 @@ which is then logged as gps_dump and can be used for PPK. Enable sat info (if available). -Enable publication of satellite info (ORB_ID(satellite_info)) if possible. -Not available on MTK. +Enable publication of satellite info (ORB_ID(satellite_info)) if possible. Not available on MTK. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------------ | ---- | @@ -20569,9 +18625,7 @@ Not available on MTK. u-blox F9P UART2 Baudrate. -Select a baudrate for the F9P's UART2 port. -In GPS_UBX_MODE 1, 2, and 3, the F9P's UART2 port is configured to send/receive RTCM corrections. -Set this to 57600 if you want to attach a telemetry radio on UART2. +Select a baudrate for the F9P's UART2 port. In GPS_UBX_MODE 1, 2, and 3, the F9P's UART2 port is configured to send/receive RTCM corrections. Set this to 57600 if you want to attach a telemetry radio on UART2. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -20598,8 +18652,7 @@ u-blox protocol configuration for interfaces. u-blox GPS dynamic platform model. -u-blox receivers support different dynamic platform models to adjust the navigation engine to -the expected application environment. +u-blox receivers support different dynamic platform models to adjust the navigation engine to the expected application environment. **Values:** @@ -20617,16 +18670,7 @@ the expected application environment. u-blox GPS Mode. -Select the u-blox configuration setup. Most setups will use the default, including RTK and -dual GPS without heading. -If rover has RTCM corrections from a static base (or other static correction source) coming in on UART2, then select Mode 5. -The Heading mode requires 2 F9P devices to be attached. The main GPS will act as rover and output -heading information, whereas the secondary will act as moving base. -Modes 1 and 2 require each F9P UART1 to be connected to the Autopilot. In addition, UART2 on the -F9P units are connected to each other. -Modes 3 and 4 only require UART1 on each F9P connected to the Autopilot or Can Node. UART RX DMA is required. -RTK is still possible with this setup. -Mode 6 is intended for use with a ground control station (not necessarily an RTK correction base). +Select the u-blox configuration setup. Most setups will use the default, including RTK and dual GPS without heading. If rover has RTCM corrections from a static base (or other static correction source) coming in on UART2, then select Mode 5. The Heading mode requires 2 F9P devices to be attached. The main GPS will act as rover and output heading information, whereas the secondary will act as moving base. Modes 1 and 2 require each F9P UART1 to be connected to the Autopilot. In addition, UART2 on the F9P units are connected to each other. Modes 3 and 4 only require UART1 on each F9P connected to the Autopilot or Can Node. UART RX DMA is required. RTK is still possible with this setup. **Values:** @@ -20636,33 +18680,16 @@ Mode 6 is intended for use with a ground control station (not necessarily an RTK - `3`: Heading (Rover With Moving Base UART1 Connected to Autopilot Or Can Node At 921600) - `4`: Moving Base (Moving Base UART1 Connected to Autopilot Or Can Node At 921600) - `5`: Rover with Static Base on UART2 (similar to Default, except coming in on UART2) -- `6`: Ground Control Station (UART2 outputs NMEA) | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | | ✓ | 0 | 1 | | 0 | -### GPS_UBX_PPK (`INT32`) {#GPS_UBX_PPK} - -Enable MSM7 message output for PPK workflow. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------------ | ---- | -| ✓ | | | | Disabled (0) | - ### GPS_YAW_OFFSET (`FLOAT`) {#GPS_YAW_OFFSET} Heading/Yaw offset for dual antenna GPS. -Heading offset angle for dual antenna GPS setups that support heading estimation. -Set this to 0 if the antennas are parallel to the forward-facing direction -of the vehicle and the rover (or Unicore primary) antenna is in front. -The offset angle increases clockwise. -Set this to 90 if the rover (or Unicore primary, or Septentrio Mosaic Aux) -antenna is placed on the right side of the vehicle and the moving base -antenna is on the left side. -(Note: the Unicore primary antenna is the one connected on the right as seen -from the top). +Heading offset angle for dual antenna GPS setups that support heading estimation. Set this to 0 if the antennas are parallel to the forward-facing direction of the vehicle and the rover (or Unicore primary) antenna is in front. The offset angle increases clockwise. Set this to 90 if the rover (or Unicore primary, or Septentrio Mosaic Aux) antenna is placed on the right side of the vehicle and the moving base antenna is on the left side. (Note: the Unicore primary antenna is the one connected on the right as seen from the top). | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -20684,8 +18711,7 @@ Enables the PPS capture module to refine the GPS time from pulses detected on a Geofence violation action. -Note: Setting this value to 4 enables flight termination, -which will kill the vehicle on violation of the fence. +Note: Setting this value to 4 enables flight termination, which will kill the vehicle on violation of the fence. **Values:** @@ -20704,8 +18730,7 @@ which will kill the vehicle on violation of the fence. Max horizontal distance from Home. -Maximum horizontal distance in meters the vehicle can be from Home before triggering a geofence action. -Disabled if 0. +Maximum horizontal distance in meters the vehicle can be from Home before triggering a geofence action. Disabled if 0. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20715,8 +18740,7 @@ Disabled if 0. Max vertical distance from Home. -Maximum vertical distance in meters the vehicle can be from Home before triggering a geofence action. -Disabled if 0. +Maximum vertical distance in meters the vehicle can be from Home before triggering a geofence action. Disabled if 0. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20726,10 +18750,7 @@ Disabled if 0. [EXPERIMENTAL] Use Pre-emptive geofence triggering. -WARNING: This experimental feature may cause flyaways. Use at your own risk. -Predict the motion of the vehicle and trigger the breach if it is determined that the current trajectory -would result in a breach happening before the vehicle can make evasive maneuvers. -The vehicle is then re-routed to a safe hold position (stop for multirotor, loiter for fixed wing). +WARNING: This experimental feature may cause flyaways. Use at your own risk. Predict the motion of the vehicle and trigger the breach if it is determined that the current trajectory would result in a breach happening before the vehicle can make evasive maneuvers. The vehicle is then re-routed to a safe hold position (stop for multirotor, loiter for fixed wing). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -20739,9 +18760,7 @@ The vehicle is then re-routed to a safe hold position (stop for multirotor, loit Geofence source. -Select which position source should be used. Selecting GPS instead of global position makes sure that there is -no dependence on the position estimator -0 = global position, 1 = GPS +Select which position source should be used. Selecting GPS instead of global position makes sure that there is no dependence on the position estimator 0 = global position, 1 = GPS **Values:** @@ -20758,9 +18777,7 @@ no dependence on the position estimator Airframe selection. -Defines which mixer implementation to use. -Some are generic, while others are specifically fit to a certain vehicle with a fixed set of actuators. -'Custom' should only be used if noting else can be used. +Defines which mixer implementation to use. Some are generic, while others are specifically fit to a certain vehicle with a fixed set of actuators. 'Custom' should only be used if noting else can be used. **Values:** @@ -20789,8 +18806,7 @@ Some are generic, while others are specifically fit to a certain vehicle with a Motor failure handling mode. -This is used to specify how to handle motor failures -reported by failure detector. +This is used to specify how to handle motor failures reported by failure detector. **Values:** @@ -20805,8 +18821,7 @@ reported by failure detector. Collective pitch curve at position 0. -Defines the collective pitch at the interval position 0 for a given thrust setpoint. -Use negative values if the swash plate needs to move down to provide upwards thrust. +Defines the collective pitch at the interval position 0 for a given thrust setpoint. Use negative values if the swash plate needs to move down to provide upwards thrust. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20816,8 +18831,7 @@ Use negative values if the swash plate needs to move down to provide upwards thr Collective pitch curve at position 1. -Defines the collective pitch at the interval position 1 for a given thrust setpoint. -Use negative values if the swash plate needs to move down to provide upwards thrust. +Defines the collective pitch at the interval position 1 for a given thrust setpoint. Use negative values if the swash plate needs to move down to provide upwards thrust. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20827,8 +18841,7 @@ Use negative values if the swash plate needs to move down to provide upwards thr Collective pitch curve at position 2. -Defines the collective pitch at the interval position 2 for a given thrust setpoint. -Use negative values if the swash plate needs to move down to provide upwards thrust. +Defines the collective pitch at the interval position 2 for a given thrust setpoint. Use negative values if the swash plate needs to move down to provide upwards thrust. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20838,8 +18851,7 @@ Use negative values if the swash plate needs to move down to provide upwards thr Collective pitch curve at position 3. -Defines the collective pitch at the interval position 3 for a given thrust setpoint. -Use negative values if the swash plate needs to move down to provide upwards thrust. +Defines the collective pitch at the interval position 3 for a given thrust setpoint. Use negative values if the swash plate needs to move down to provide upwards thrust. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20849,8 +18861,7 @@ Use negative values if the swash plate needs to move down to provide upwards thr Collective pitch curve at position 4. -Defines the collective pitch at the interval position 4 for a given thrust setpoint. -Use negative values if the swash plate needs to move down to provide upwards thrust. +Defines the collective pitch at the interval position 4 for a given thrust setpoint. Use negative values if the swash plate needs to move down to provide upwards thrust. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20870,8 +18881,7 @@ Same definition as the proportional gain but for integral. Proportional gain for rpm control. -Ratio between rpm error devided by 1000 to how much normalized output gets added to correct for it. -motor_command = throttle_curve + CA_HELI_RPM_P \* (rpm_setpoint - rpm_measurement) / 1000 +Ratio between rpm error devided by 1000 to how much normalized output gets added to correct for it. motor_command = throttle_curve + CA_HELI_RPM_P \* (rpm_setpoint - rpm_measurement) / 1000 | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20941,10 +18951,7 @@ Defines the output throttle at the interval position 4. Main rotor turns counter-clockwise. -Default configuration is for a clockwise turning main rotor and -positive thrust of the tail rotor is expected to rotate the vehicle clockwise. -Set this parameter to true if the tail rotor provides thrust in counter-clockwise direction -which is mostly the case when the main rotor turns counter-clockwise. +Default configuration is for a clockwise turning main rotor and positive thrust of the tail rotor is expected to rotate the vehicle clockwise. Set this parameter to true if the tail rotor provides thrust in counter-clockwise direction which is mostly the case when the main rotor turns counter-clockwise. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -20954,12 +18961,7 @@ which is mostly the case when the main rotor turns counter-clockwise. Offset for yaw compensation based on collective pitch. -This allows to specify which collective pitch command results in the least amount of rotor drag. -This is used to increase the accuracy of the yaw drag torque compensation based on collective pitch -by aligning the lowest rotor drag with zero compensation. -For symmetric profile blades this is the command that results in exactly 0° collective blade angle. -For lift profile blades this is typically a command resulting in slightly negative collective blade angle. -tail_output += CA_HELI_YAW_CP_S \* abs(collective_pitch - CA_HELI_YAW_CP_O) +This allows to specify which collective pitch command results in the least amount of rotor drag. This is used to increase the accuracy of the yaw drag torque compensation based on collective pitch by aligning the lowest rotor drag with zero compensation. For symmetric profile blades this is the command that results in exactly 0° collective blade angle. For lift profile blades this is typically a command resulting in slightly negative collective blade angle. tail_output += CA_HELI_YAW_CP_S \* abs(collective_pitch - CA_HELI_YAW_CP_O) | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20969,9 +18971,7 @@ tail_output += CA_HELI_YAW_CP_S \* abs(collective_pitch - CA_HELI_YAW_CP_O) Scale for yaw compensation based on collective pitch. -This allows to add a proportional factor of the collective pitch command to the yaw command. -A negative value is needed when positive thrust of the tail rotor rotates the vehicle opposite to the main rotor turn direction. -tail_output += CA_HELI_YAW_CP_S \* abs(collective_pitch - CA_HELI_YAW_CP_O) +This allows to add a proportional factor of the collective pitch command to the yaw command. A negative value is needed when positive thrust of the tail rotor rotates the vehicle opposite to the main rotor turn direction. tail_output += CA_HELI_YAW_CP_S \* abs(collective_pitch - CA_HELI_YAW_CP_O) | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20981,9 +18981,7 @@ tail_output += CA_HELI_YAW_CP_S \* abs(collective_pitch - CA_HELI_YAW_CP_O) Scale for yaw compensation based on throttle. -This allows to add a proportional factor of the throttle command to the yaw command. -A negative value is needed when positive thrust of the tail rotor rotates the vehicle opposite to the main rotor turn direction. -tail_output += CA_HELI_YAW_TH_S \* throttle +This allows to add a proportional factor of the throttle command to the yaw command. A negative value is needed when positive thrust of the tail rotor rotates the vehicle opposite to the main rotor turn direction. tail_output += CA_HELI_YAW_TH_S \* throttle | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -20993,9 +18991,7 @@ tail_output += CA_HELI_YAW_TH_S \* throttle Throw angle of swashplate servo at maximum commands for linearization. -Used to linearize mechanical output of swashplate servos to avoid axis coupling and binding with 4 servo redundancy. -This requires a symmetric setup where the servo horn is exactly centered with a 0 command. -Setting to zero disables feature. +Used to linearize mechanical output of swashplate servos to avoid axis coupling and binding with 4 servo redundancy. This requires a symmetric setup where the servo horn is exactly centered with a 0 command. Setting to zero disables feature. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21005,8 +19001,7 @@ Setting to zero disables feature. Control allocation method. -Selects the algorithm and desaturation method. -If set to Automatic, the selection is based on the airframe (CA_AIRFRAME). +Selects the algorithm and desaturation method. If set to Automatic, the selection is based on the airframe (CA_AIRFRAME). **Values:** @@ -21022,9 +19017,7 @@ If set to Automatic, the selection is based on the airframe (CA_AIRFRAME). Motor 0 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21034,9 +19027,7 @@ Zero means that slew rate limiting is disabled. Motor 10 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21046,9 +19037,7 @@ Zero means that slew rate limiting is disabled. Motor 11 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21058,9 +19047,7 @@ Zero means that slew rate limiting is disabled. Motor 1 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21070,9 +19057,7 @@ Zero means that slew rate limiting is disabled. Motor 2 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21082,9 +19067,7 @@ Zero means that slew rate limiting is disabled. Motor 3 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21094,9 +19077,7 @@ Zero means that slew rate limiting is disabled. Motor 4 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21106,9 +19087,7 @@ Zero means that slew rate limiting is disabled. Motor 5 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21118,9 +19097,7 @@ Zero means that slew rate limiting is disabled. Motor 6 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21130,9 +19107,7 @@ Zero means that slew rate limiting is disabled. Motor 7 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21142,9 +19117,7 @@ Zero means that slew rate limiting is disabled. Motor 8 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21154,9 +19127,7 @@ Zero means that slew rate limiting is disabled. Motor 9 slew rate limit. -Forces the motor output signal to take at least the configured time (in seconds) -to traverse its full range (normally [0, 1], or if reversible [-1, 1]). -Zero means that slew rate limiting is disabled. +Forces the motor output signal to take at least the configured time (in seconds) to traverse its full range (normally [0, 1], or if reversible [-1, 1]). Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21196,9 +19167,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 0. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21208,9 +19177,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 0. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21292,9 +19259,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 10. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21304,9 +19269,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 10. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21388,9 +19351,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 11. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21400,9 +19361,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 11. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21484,9 +19443,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 1. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21496,9 +19453,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 1. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21580,9 +19535,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 2. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21592,9 +19545,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 2. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21676,9 +19627,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 3. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21688,9 +19637,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 3. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21772,9 +19719,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 4. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21784,9 +19729,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 4. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21868,9 +19811,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 5. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21880,9 +19821,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 5. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21964,9 +19903,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 6. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -21976,9 +19913,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 6. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22060,9 +19995,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 7. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22072,9 +20005,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 7. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22156,9 +20087,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 8. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22168,9 +20097,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 8. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22252,9 +20179,7 @@ Only the direction is considered (the vector is normalized). Thrust coefficient of rotor 9. -The thrust coefficient if defined as Thrust = CT \* u^2, -where u (with value between actuator minimum and maximum) -is the output signal sent to the motor controller. +The thrust coefficient if defined as Thrust = CT \* u^2, where u (with value between actuator minimum and maximum) is the output signal sent to the motor controller. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22264,9 +20189,7 @@ is the output signal sent to the motor controller. Moment coefficient of rotor 9. -The moment coefficient if defined as Torque = KM \* Thrust. -Use a positive value for a rotor with CCW rotation. -Use a negative value for a rotor with CW rotation. +The moment coefficient if defined as Torque = KM \* Thrust. Use a positive value for a rotor with CCW rotation. Use a negative value for a rotor with CW rotation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22461,9 +20384,7 @@ Number of swash plates servos. Servo 0 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22473,9 +20394,7 @@ Zero means that slew rate limiting is disabled. Servo 1 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22485,9 +20404,7 @@ Zero means that slew rate limiting is disabled. Servo 2 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22497,9 +20414,7 @@ Zero means that slew rate limiting is disabled. Servo 3 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22509,9 +20424,7 @@ Zero means that slew rate limiting is disabled. Servo 4 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22521,9 +20434,7 @@ Zero means that slew rate limiting is disabled. Servo 5 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22533,9 +20444,7 @@ Zero means that slew rate limiting is disabled. Servo 6 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22545,9 +20454,7 @@ Zero means that slew rate limiting is disabled. Servo 7 slew rate limit. -Forces the servo output signal to take at least the configured time (in seconds) -to traverse its full range [-100%, 100%]. -Zero means that slew rate limiting is disabled. +Forces the servo output signal to take at least the configured time (in seconds) to traverse its full range [-100%, 100%]. Zero means that slew rate limiting is disabled. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22574,8 +20481,6 @@ Control Surface 0 configuration as spoiler. Control Surface 0 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22656,8 +20561,6 @@ Control Surface 1 configuration as spoiler. Control Surface 1 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22738,8 +20641,6 @@ Control Surface 2 configuration as spoiler. Control Surface 2 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22820,8 +20721,6 @@ Control Surface 3 configuration as spoiler. Control Surface 3 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22902,8 +20801,6 @@ Control Surface 4 configuration as spoiler. Control Surface 4 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -22984,8 +20881,6 @@ Control Surface 5 configuration as spoiler. Control Surface 5 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23066,8 +20961,6 @@ Control Surface 6 configuration as spoiler. Control Surface 6 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23148,8 +21041,6 @@ Control Surface 7 configuration as spoiler. Control Surface 7 trim. Can be used to add an offset to the servo control. -NOTE: Do not use for PWM servos. Use the PWM CENTER parameters instead (e.g., PWM_MAIN_CENT, PWM_AUX_CENT) instead. -This parameter can only be set if all PWM Center parameters are set to default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23250,8 +21141,7 @@ Define if this servo is used for additional control. Tilt Servo 0 Tilt Angle at Maximum. -Defines the tilt angle when the servo is at the maximum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the maximum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23261,8 +21151,7 @@ An angle of zero means upwards. Tilt Servo 0 Tilt Angle at Minimum. -Defines the tilt angle when the servo is at the minimum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the minimum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23272,9 +21161,7 @@ An angle of zero means upwards. Tilt Servo 0 Tilt Direction. -Defines the direction the servo tilts towards when moving towards the maximum tilt angle. -For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', -the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. +Defines the direction the servo tilts towards when moving towards the maximum tilt angle. For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. **Values:** @@ -23306,8 +21193,7 @@ Define if this servo is used for additional control. Tilt Servo 1 Tilt Angle at Maximum. -Defines the tilt angle when the servo is at the maximum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the maximum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23317,8 +21203,7 @@ An angle of zero means upwards. Tilt Servo 1 Tilt Angle at Minimum. -Defines the tilt angle when the servo is at the minimum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the minimum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23328,9 +21213,7 @@ An angle of zero means upwards. Tilt Servo 1 Tilt Direction. -Defines the direction the servo tilts towards when moving towards the maximum tilt angle. -For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', -the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. +Defines the direction the servo tilts towards when moving towards the maximum tilt angle. For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. **Values:** @@ -23362,8 +21245,7 @@ Define if this servo is used for additional control. Tilt Servo 2 Tilt Angle at Maximum. -Defines the tilt angle when the servo is at the maximum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the maximum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23373,8 +21255,7 @@ An angle of zero means upwards. Tilt Servo 2 Tilt Angle at Minimum. -Defines the tilt angle when the servo is at the minimum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the minimum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23384,9 +21265,7 @@ An angle of zero means upwards. Tilt Servo 2 Tilt Direction. -Defines the direction the servo tilts towards when moving towards the maximum tilt angle. -For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', -the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. +Defines the direction the servo tilts towards when moving towards the maximum tilt angle. For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. **Values:** @@ -23418,8 +21297,7 @@ Define if this servo is used for additional control. Tilt Servo 3 Tilt Angle at Maximum. -Defines the tilt angle when the servo is at the maximum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the maximum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23429,8 +21307,7 @@ An angle of zero means upwards. Tilt Servo 3 Tilt Angle at Minimum. -Defines the tilt angle when the servo is at the minimum. -An angle of zero means upwards. +Defines the tilt angle when the servo is at the minimum. An angle of zero means upwards. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23440,9 +21317,7 @@ An angle of zero means upwards. Tilt Servo 3 Tilt Direction. -Defines the direction the servo tilts towards when moving towards the maximum tilt angle. -For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', -the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. +Defines the direction the servo tilts towards when moving towards the maximum tilt angle. For example if the minimum tilt angle is -90, the maximum 90, and the direction 'Towards Front', the motor axis aligns with the XZ-plane, points towards -X at the minimum and +X at the maximum tilt. **Values:** @@ -23473,8 +21348,7 @@ Total number of Tilt Servos. Servo 1 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23484,8 +21358,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 2 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23495,8 +21368,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 3 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23506,8 +21378,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 4 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23517,8 +21388,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 5 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23528,8 +21398,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 6 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23539,8 +21408,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 7 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23550,8 +21418,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 8 Angle at Maximum. -Defines the angle when the servo is at the maximum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. +Defines the angle when the servo is at the maximum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MAXA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23561,8 +21428,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 1 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23572,8 +21438,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 2 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23583,8 +21448,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 3 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23594,8 +21458,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 4 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23605,8 +21468,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 5 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23616,8 +21478,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 6 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23627,8 +21488,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 7 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23638,8 +21498,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Servo 8 Angle at Minimum. -Defines the angle when the servo is at the minimum. -Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. +Defines the angle when the servo is at the minimum. Currently only supported in gz simulation and must be coherent with .sdf file and CA_SV_TL{n}\_MINA. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23651,8 +21510,7 @@ Currently only supported in gz simulation and must be coherent with .sdf file an Gate size for acceleration fusion. -Sets the number of standard deviations used -by the innovation consistency test. +Sets the number of standard deviations used by the innovation consistency test. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23662,8 +21520,7 @@ by the innovation consistency test. 1-sigma initial hover thrust uncertainty. -Sets the number of standard deviations used -by the innovation consistency test. +Sets the number of standard deviations used by the innovation consistency test. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----------------- | @@ -23673,9 +21530,7 @@ by the innovation consistency test. Hover thrust process noise. -Reduce to make the hover thrust estimate -more stable, increase if the real hover thrust -is expected to change quickly over time. +Reduce to make the hover thrust estimate more stable, increase if the real hover thrust is expected to change quickly over time. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ------------------- | @@ -23685,10 +21540,7 @@ is expected to change quickly over time. Max deviation from MPC_THR_HOVER. -Defines the range of the hover thrust estimate around MPC_THR_HOVER. -A value of 0.2 with MPC_THR_HOVER at 0.5 results in a range of [0.3, 0.7]. -Set to a large value if the vehicle operates in varying physical conditions that -affect the required hover thrust strongly (e.g. differently sized payloads). +Defines the range of the hover thrust estimate around MPC_THR_HOVER. A value of 0.2 with MPC_THR_HOVER at 0.5 results in a range of [0.3, 0.7]. Set to a large value if the vehicle operates in varying physical conditions that affect the required hover thrust strongly (e.g. differently sized payloads). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----------------- | @@ -23698,9 +21550,7 @@ affect the required hover thrust strongly (e.g. differently sized payloads). Horizontal velocity threshold for sensitivity reduction. -Above this speed, the measurement noise is linearly increased -to reduce the sensitivity of the estimator from biased measurement. -Set to a low value on vehicles with large lifting surfaces. +Above this speed, the measurement noise is linearly increased to reduce the sensitivity of the estimator from biased measurement. Set to a low value on vehicles with large lifting surfaces. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23710,9 +21560,7 @@ Set to a low value on vehicles with large lifting surfaces. Vertical velocity threshold for sensitivity reduction. -Above this speed, the measurement noise is linearly increased -to reduce the sensitivity of the estimator from biased measurement. -Set to a low value on vehicles affected by air drag when climbing or descending. +Above this speed, the measurement noise is linearly increased to reduce the sensitivity of the estimator from biased measurement. Set to a low value on vehicles affected by air drag when climbing or descending. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23732,9 +21580,9 @@ Duration of choking during startup. Enable internal combustion engine. -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------------ | ---- | -| | | | | Disabled (0) | +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ----------- | ---- | +| | | | | Enabled (1) | ### ICE_IGN_DELAY (`FLOAT`) {#ICE_IGN_DELAY} @@ -23763,7 +21611,6 @@ Engine start/stop input source. - `0`: On arming - disarming - `1`: Aux1 - `2`: Aux2 -- `3`: On Vtol Transitions | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23773,8 +21620,7 @@ Engine start/stop input source. Fault detection if it stops in running state. -Enables restart if a fault is detected during the running state. Otherwise -commands continues in running state until given an user request off. +Enables restart if a fault is detected during the running state. Otherwise commands continues in running state until given an user request off. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -23897,8 +21743,7 @@ Maximum airspeed allowed in the landed state Fixed-wing land detector: max rotational speed. -Maximum allowed norm of the angular velocity in the landed state. -Only used if neither airspeed nor groundspeed can be used for landing detection. +Maximum allowed norm of the angular velocity in the landed state. Only used if neither airspeed nor groundspeed can be used for landing detection. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -23918,9 +21763,7 @@ Time the land conditions (speeds and acceleration) have to be satisfied to detec Fixed-wing land detector: Max horizontal velocity threshold. -Maximum horizontal velocity allowed in the landed state. -A factor of 0.7 is applied in case of airspeed-less flying -(either because no sensor is present or sensor data got invalid in flight). +Maximum horizontal velocity allowed in the landed state. A factor of 0.7 is applied in case of airspeed-less flying (either because no sensor is present or sensor data got invalid in flight). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23950,8 +21793,7 @@ Maximum horizontal (x,y body axes) acceleration allowed in the landed state Ground effect altitude for multicopters. -The height above ground below which ground effect creates barometric altitude errors. -A negative value indicates no ground effect. +The height above ground below which ground effect creates barometric altitude errors. A negative value indicates no ground effect. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23971,9 +21813,7 @@ Maximum allowed norm of the angular velocity (roll, pitch) in the landed state. Multicopter land detection trigger time. -Total time it takes to go through all three land detection stages: -ground contact, maybe landed, landed -when all necessary conditions are constantly met. +Total time it takes to go through all three land detection stages: ground contact, maybe landed, landed when all necessary conditions are constantly met. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -23993,10 +21833,7 @@ Maximum horizontal velocity allowed in the landed state Multicopter vertical velocity threshold. -Vertical velocity threshold to detect landing. -Has to be set lower than the expected minimal speed for landing, -which is either MPC_LAND_SPEED or MPC_LAND_CRWL. -This is enforced by an automatic check. +Vertical velocity threshold to detect landing. Has to be set lower than the expected minimal speed for landing, which is either MPC_LAND_SPEED or MPC_LAND_CRWL. This is enforced by an automatic check. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -24006,8 +21843,7 @@ This is enforced by an automatic check. Total flight time in microseconds. -Total flight time of this autopilot. Higher 32 bits of the value. -Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO. +Total flight time of this autopilot. Higher 32 bits of the value. Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -24017,8 +21853,7 @@ Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO. Total flight time in microseconds. -Total flight time of this autopilot. Lower 32 bits of the value. -Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO. +Total flight time of this autopilot. Lower 32 bits of the value. Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -24030,8 +21865,7 @@ Flight time in microseconds = (LND_FLIGHT_T_HI << 32) | LND_FLIGHT_T_LO. Acceleration uncertainty. -Variance of acceleration measurement used for landing target position prediction. -Higher values results in tighter following of the measurements and more lenient outlier rejection +Variance of acceleration measurement used for landing target position prediction. Higher values results in tighter following of the measurements and more lenient outlier rejection | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | --------- | @@ -24041,8 +21875,7 @@ Higher values results in tighter following of the measurements and more lenient Landing target measurement uncertainty. -Variance of the landing target measurement from the driver. -Higher values result in less aggressive following of the measurement and a smoother output as well as fewer rejected measurements. +Variance of the landing target measurement from the driver. Higher values result in less aggressive following of the measurement and a smoother output as well as fewer rejected measurements. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---------- | @@ -24052,9 +21885,7 @@ Higher values result in less aggressive following of the measurement and a smoot Landing target mode. -Configure the mode of the landing target. Depending on the mode, the landing target observations are used differently to aid position estimation. -Mode Moving: The landing target may be moving around while in the field of view of the vehicle. Landing target measurements are not used to aid positioning. -Mode Stationary: The landing target is stationary. Measured velocity w.r.t. the landing target is used to aid velocity estimation. +Configure the mode of the landing target. Depending on the mode, the landing target observations are used differently to aid position estimation. Mode Moving: The landing target may be moving around while in the field of view of the vehicle. Landing target measurements are not used to aid positioning. Mode Stationary: The landing target is stationary. Measured velocity w.r.t. the landing target is used to aid velocity estimation. **Values:** @@ -24156,8 +21987,7 @@ Initial variance of the relative landing target velocity in x and y directions Accelerometer xy noise density. -Data sheet noise density = 150ug/sqrt(Hz) = 0.0015 m/s^2/sqrt(Hz) -Larger than data sheet to account for tilt error. +Data sheet noise density = 150ug/sqrt(Hz) = 0.0015 m/s^2/sqrt(Hz) Larger than data sheet to account for tilt error. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | -------------- | @@ -24267,16 +22097,7 @@ Optical flow scale. Integer bitmask controlling data fusion. -Set bits in the following positions to enable: -0 : Set to true to fuse GPS data if available, also requires GPS for altitude init -1 : Set to true to fuse optical flow data if available -2 : Set to true to fuse vision position -3 : Set to true to enable landing target -4 : Set to true to fuse land detector -5 : Set to true to publish AGL as local position down component -6 : Set to true to enable flow gyro compensation -7 : Set to true to enable baro fusion -default (145 - GPS, baro, land detector) +Set bits in the following positions to enable: 0 : Set to true to fuse GPS data if available, also requires GPS for altitude init 1 : Set to true to fuse optical flow data if available 2 : Set to true to fuse vision position 3 : Set to true to enable landing target 4 : Set to true to fuse land detector 5 : Set to true to publish AGL as local position down component 6 : Set to true to enable flow gyro compensation 7 : Set to true to enable baro fusion default (145 - GPS, baro, land detector) **Bitmask:** @@ -24403,8 +22224,7 @@ Accel bias propagation noise density. Position propagation noise density. -Increase to trust measurements more. -Decrease to trust model more. +Increase to trust measurements more. Decrease to trust model more. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ------------ | @@ -24422,8 +22242,7 @@ Terrain random walk noise density, hilly/outdoor (0.1), flat/Indoor (0.001). Velocity propagation noise density. -Increase to trust measurements more. -Decrease to trust model more. +Increase to trust measurements more. Decrease to trust model more. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | -------------- | @@ -24519,8 +22338,7 @@ Required z standard deviation to publish altitude/ terrain. Broadcast heartbeats on local network for MAVLink instance 0. -This allows a ground control station to automatically find the drone -on the local network. +This allows a ground control station to automatically find the drone on the local network. **Values:** @@ -24562,8 +22380,7 @@ Configure on which serial port to run MAVLink. Enable serial flow control for instance 0. -This is used to force flow control on or off for the the mavlink -instance. By default it is auto detected. Use when auto detection fails. +This is used to force flow control on or off for the the mavlink instance. By default it is auto detected. Use when auto detection fails. **Values:** @@ -24579,10 +22396,7 @@ instance. By default it is auto detected. Use when auto detection fails. Enable MAVLink Message forwarding for instance 0. -If enabled, forward incoming MAVLink messages to other MAVLink ports if the -message is either broadcast or the target is not the autopilot. -This allows for example a GCS to talk to a camera that is connected to the -autopilot via MAVLink (on a different link than the GCS). +If enabled, forward incoming MAVLink messages to other MAVLink ports if the message is either broadcast or the target is not the autopilot. This allows for example a GCS to talk to a camera that is connected to the autopilot via MAVLink (on a different link than the GCS). | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -24592,9 +22406,7 @@ autopilot via MAVLink (on a different link than the GCS). Configures the frequency of HIGH_LATENCY2 stream for instance 0. -Positive real value that configures the transmission frequency of the -HIGH_LATENCY2 stream for instance 0, configured in iridium mode. -This parameter has no effect if the instance mode is different from iridium. +Positive real value that configures the transmission frequency of the HIGH_LATENCY2 stream for instance 0, configured in iridium mode. This parameter has no effect if the instance mode is different from iridium. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24604,8 +22416,7 @@ This parameter has no effect if the instance mode is different from iridium. MAVLink Mode for instance 0. -The MAVLink Mode defines the set of streamed messages (for example the -vehicle's attitude) and their sending rates. +The MAVLink Mode defines the set of streamed messages (for example the vehicle's attitude) and their sending rates. **Values:** @@ -24630,9 +22441,7 @@ vehicle's attitude) and their sending rates. Enable software throttling of mavlink on instance 0. -If enabled, MAVLink messages will be throttled according to -`txbuf` field reported by radio_status. -Requires a radio to send the mavlink message RADIO_STATUS. +If enabled, MAVLink messages will be throttled according to `txbuf` field reported by radio_status. Requires a radio to send the mavlink message RADIO_STATUS. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -24642,12 +22451,7 @@ Requires a radio to send the mavlink message RADIO_STATUS. Maximum MAVLink sending rate for instance 0. -Configure the maximum sending rate for the MAVLink streams in Bytes/sec. -If the configured streams exceed the maximum rate, the sending rate of -each stream is automatically decreased. -If this is set to 0 a value of half of the theoretical maximum bandwidth is used. -This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on -8N1-configured links). +Configure the maximum sending rate for the MAVLink streams in Bytes/sec. If the configured streams exceed the maximum rate, the sending rate of each stream is automatically decreased. If this is set to 0 a value of half of the theoretical maximum bandwidth is used. This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on 8N1-configured links). | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24657,8 +22461,7 @@ This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on MAVLink Remote Port for instance 0. -If ethernet enabled and selected as configuration for MAVLink instance 0, -selected remote port will be set and used in MAVLink instance 0. +If ethernet enabled and selected as configuration for MAVLink instance 0, selected remote port will be set and used in MAVLink instance 0. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24668,8 +22471,7 @@ selected remote port will be set and used in MAVLink instance 0. MAVLink Network Port for instance 0. -If ethernet enabled and selected as configuration for MAVLink instance 0, -selected udp port will be set and used in MAVLink instance 0. +If ethernet enabled and selected as configuration for MAVLink instance 0, selected udp port will be set and used in MAVLink instance 0. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24679,8 +22481,7 @@ selected udp port will be set and used in MAVLink instance 0. Broadcast heartbeats on local network for MAVLink instance 1. -This allows a ground control station to automatically find the drone -on the local network. +This allows a ground control station to automatically find the drone on the local network. **Values:** @@ -24722,8 +22523,7 @@ Configure on which serial port to run MAVLink. Enable serial flow control for instance 1. -This is used to force flow control on or off for the the mavlink -instance. By default it is auto detected. Use when auto detection fails. +This is used to force flow control on or off for the the mavlink instance. By default it is auto detected. Use when auto detection fails. **Values:** @@ -24739,10 +22539,7 @@ instance. By default it is auto detected. Use when auto detection fails. Enable MAVLink Message forwarding for instance 1. -If enabled, forward incoming MAVLink messages to other MAVLink ports if the -message is either broadcast or the target is not the autopilot. -This allows for example a GCS to talk to a camera that is connected to the -autopilot via MAVLink (on a different link than the GCS). +If enabled, forward incoming MAVLink messages to other MAVLink ports if the message is either broadcast or the target is not the autopilot. This allows for example a GCS to talk to a camera that is connected to the autopilot via MAVLink (on a different link than the GCS). | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------------ | ---- | @@ -24752,9 +22549,7 @@ autopilot via MAVLink (on a different link than the GCS). Configures the frequency of HIGH_LATENCY2 stream for instance 1. -Positive real value that configures the transmission frequency of the -HIGH_LATENCY2 stream for instance 1, configured in iridium mode. -This parameter has no effect if the instance mode is different from iridium. +Positive real value that configures the transmission frequency of the HIGH_LATENCY2 stream for instance 1, configured in iridium mode. This parameter has no effect if the instance mode is different from iridium. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24764,8 +22559,7 @@ This parameter has no effect if the instance mode is different from iridium. MAVLink Mode for instance 1. -The MAVLink Mode defines the set of streamed messages (for example the -vehicle's attitude) and their sending rates. +The MAVLink Mode defines the set of streamed messages (for example the vehicle's attitude) and their sending rates. **Values:** @@ -24790,9 +22584,7 @@ vehicle's attitude) and their sending rates. Enable software throttling of mavlink on instance 1. -If enabled, MAVLink messages will be throttled according to -`txbuf` field reported by radio_status. -Requires a radio to send the mavlink message RADIO_STATUS. +If enabled, MAVLink messages will be throttled according to `txbuf` field reported by radio_status. Requires a radio to send the mavlink message RADIO_STATUS. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -24802,12 +22594,7 @@ Requires a radio to send the mavlink message RADIO_STATUS. Maximum MAVLink sending rate for instance 1. -Configure the maximum sending rate for the MAVLink streams in Bytes/sec. -If the configured streams exceed the maximum rate, the sending rate of -each stream is automatically decreased. -If this is set to 0 a value of half of the theoretical maximum bandwidth is used. -This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on -8N1-configured links). +Configure the maximum sending rate for the MAVLink streams in Bytes/sec. If the configured streams exceed the maximum rate, the sending rate of each stream is automatically decreased. If this is set to 0 a value of half of the theoretical maximum bandwidth is used. This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on 8N1-configured links). | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24817,8 +22604,7 @@ This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on MAVLink Remote Port for instance 1. -If ethernet enabled and selected as configuration for MAVLink instance 1, -selected remote port will be set and used in MAVLink instance 1. +If ethernet enabled and selected as configuration for MAVLink instance 1, selected remote port will be set and used in MAVLink instance 1. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24828,8 +22614,7 @@ selected remote port will be set and used in MAVLink instance 1. MAVLink Network Port for instance 1. -If ethernet enabled and selected as configuration for MAVLink instance 1, -selected udp port will be set and used in MAVLink instance 1. +If ethernet enabled and selected as configuration for MAVLink instance 1, selected udp port will be set and used in MAVLink instance 1. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24839,8 +22624,7 @@ selected udp port will be set and used in MAVLink instance 1. Broadcast heartbeats on local network for MAVLink instance 2. -This allows a ground control station to automatically find the drone -on the local network. +This allows a ground control station to automatically find the drone on the local network. **Values:** @@ -24882,8 +22666,7 @@ Configure on which serial port to run MAVLink. Enable serial flow control for instance 2. -This is used to force flow control on or off for the the mavlink -instance. By default it is auto detected. Use when auto detection fails. +This is used to force flow control on or off for the the mavlink instance. By default it is auto detected. Use when auto detection fails. **Values:** @@ -24899,10 +22682,7 @@ instance. By default it is auto detected. Use when auto detection fails. Enable MAVLink Message forwarding for instance 2. -If enabled, forward incoming MAVLink messages to other MAVLink ports if the -message is either broadcast or the target is not the autopilot. -This allows for example a GCS to talk to a camera that is connected to the -autopilot via MAVLink (on a different link than the GCS). +If enabled, forward incoming MAVLink messages to other MAVLink ports if the message is either broadcast or the target is not the autopilot. This allows for example a GCS to talk to a camera that is connected to the autopilot via MAVLink (on a different link than the GCS). | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------------ | ---- | @@ -24912,9 +22692,7 @@ autopilot via MAVLink (on a different link than the GCS). Configures the frequency of HIGH_LATENCY2 stream for instance 2. -Positive real value that configures the transmission frequency of the -HIGH_LATENCY2 stream for instance 2, configured in iridium mode. -This parameter has no effect if the instance mode is different from iridium. +Positive real value that configures the transmission frequency of the HIGH_LATENCY2 stream for instance 2, configured in iridium mode. This parameter has no effect if the instance mode is different from iridium. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24924,8 +22702,7 @@ This parameter has no effect if the instance mode is different from iridium. MAVLink Mode for instance 2. -The MAVLink Mode defines the set of streamed messages (for example the -vehicle's attitude) and their sending rates. +The MAVLink Mode defines the set of streamed messages (for example the vehicle's attitude) and their sending rates. **Values:** @@ -24950,9 +22727,7 @@ vehicle's attitude) and their sending rates. Enable software throttling of mavlink on instance 2. -If enabled, MAVLink messages will be throttled according to -`txbuf` field reported by radio_status. -Requires a radio to send the mavlink message RADIO_STATUS. +If enabled, MAVLink messages will be throttled according to `txbuf` field reported by radio_status. Requires a radio to send the mavlink message RADIO_STATUS. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -24962,12 +22737,7 @@ Requires a radio to send the mavlink message RADIO_STATUS. Maximum MAVLink sending rate for instance 2. -Configure the maximum sending rate for the MAVLink streams in Bytes/sec. -If the configured streams exceed the maximum rate, the sending rate of -each stream is automatically decreased. -If this is set to 0 a value of half of the theoretical maximum bandwidth is used. -This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on -8N1-configured links). +Configure the maximum sending rate for the MAVLink streams in Bytes/sec. If the configured streams exceed the maximum rate, the sending rate of each stream is automatically decreased. If this is set to 0 a value of half of the theoretical maximum bandwidth is used. This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on 8N1-configured links). | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24977,8 +22747,7 @@ This corresponds to baudrate/20 Bytes/s (baudrate/10 = maximum data rate on MAVLink Remote Port for instance 2. -If ethernet enabled and selected as configuration for MAVLink instance 2, -selected remote port will be set and used in MAVLink instance 2. +If ethernet enabled and selected as configuration for MAVLink instance 2, selected remote port will be set and used in MAVLink instance 2. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -24988,8 +22757,7 @@ selected remote port will be set and used in MAVLink instance 2. MAVLink Network Port for instance 2. -If ethernet enabled and selected as configuration for MAVLink instance 2, -selected udp port will be set and used in MAVLink instance 2. +If ethernet enabled and selected as configuration for MAVLink instance 2, selected udp port will be set and used in MAVLink instance 2. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -25007,8 +22775,7 @@ MAVLink component ID. Forward external setpoint messages. -If set to 1 incoming external setpoint messages will be directly forwarded -to the controllers if in offboard control mode +If set to 1 incoming external setpoint messages will be directly forwarded to the controllers if in offboard control mode | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -25018,8 +22785,7 @@ to the controllers if in offboard control mode Parameter hash check. -Disabling the parameter hash check functionality will make the mavlink instance -stream parameters continuously. +Disabling the parameter hash check functionality will make the mavlink instance stream parameters continuously. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -25029,8 +22795,7 @@ stream parameters continuously. Heartbeat message forwarding. -The mavlink heartbeat message will not be forwarded if this parameter is set to 'disabled'. -The main reason for disabling heartbeats to be forwarded is because they confuse dronekit. +The mavlink heartbeat message will not be forwarded if this parameter is set to 'disabled'. The main reason for disabling heartbeats to be forwarded is because they confuse dronekit. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -25042,20 +22807,19 @@ MAVLink protocol version. **Values:** -- `1`: Version 1 with auto-upgrade to v2 if detected -- `2`: Version 2 +- `0`: Default to 1, switch to 2 if GCS sends version 2 +- `1`: Always use version 1 +- `2`: Always use version 2 | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | | | | 2 | +| | | | | 0 | ### MAV_RADIO_TOUT (`INT32`) {#MAV_RADIO_TOUT} Timeout in seconds for the RADIO_STATUS reports coming in. -If the connected radio stops reporting RADIO_STATUS for a certain time, -a warning is triggered and, if MAV_X_RADIO_CTL is enabled, the software-flow -control is reset. +If the connected radio stops reporting RADIO_STATUS for a certain time, a warning is triggered and, if MAV_X_RADIO_CTL is enabled, the software-flow control is reset. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25065,10 +22829,7 @@ control is reset. MAVLink SiK Radio ID. -When non-zero the MAVLink app will attempt to configure the -SiK radio to this ID and re-set the parameter to 0. If the value -is negative it will reset the complete radio config to -factory defaults. Only applies if this mavlink instance is going through a SiK radio +When non-zero the MAVLink app will attempt to configure the SiK radio to this ID and re-set the parameter to 0. If the value is negative it will reset the complete radio config to factory defaults. Only applies if this mavlink instance is going through a SiK radio | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25082,36 +22843,6 @@ MAVLink system ID. | ------- | -------- | -------- | --------- | ------- | ---- | | ✓ | 1 | 250 | | 1 | -### MAV_S_FORWARD (`INT32`) {#MAV_S_FORWARD} - -Enable MAVLink forwarding on TELEM2. - -TELEM2 on Skynode only. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------------ | ---- | -| ✓ | | | | Disabled (0) | - -### MAV_S_MODE (`INT32`) {#MAV_S_MODE} - -MAVLink Mode for SOM to FMU communication channel. - -The MAVLink Mode defines the set of streamed messages (for example the -vehicle's attitude) and their sending rates. - -**Values:** - -- `0`: Normal -- `2`: Onboard -- `5`: Config -- `7`: Minimal -- `11`: Onboard Low Bandwidth -- `13`: Low Bandwidth - -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ------- | ---- | -| ✓ | | | | 11 | - ### MAV_TYPE (`INT32`) {#MAV_TYPE} MAVLink airframe type. @@ -25208,8 +22939,7 @@ Defines which ODR rate to use during data polling. Enable online mag bias calibration. -This enables continuous calibration of the magnetometers -before takeoff using gyro data. +This enables continuous calibration of the magnetometers before takeoff using gyro data. | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ----------- | ---- | @@ -25219,8 +22949,7 @@ before takeoff using gyro data. Mag bias estimator learning gain. -Increase to make the estimator more responsive -Decrease to make the estimator more robust to noise +Increase to make the estimator more responsive Decrease to make the estimator more robust to noise | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25232,34 +22961,17 @@ Decrease to make the estimator more robust to noise Enable arm/disarm stick gesture. -This determines if moving the left stick to the lower right -arms and to the lower left disarms the vehicle. +This determines if moving the left stick to the lower right arms and to the lower left disarms the vehicle. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | | | | | | Enabled (1) | -### MAN_DEADZONE (`FLOAT`) {#MAN_DEADZONE} - -Deadzone for sticks (only specific use cases). - -Range around stick center ignored to prevent -vehicle drift from stick hardware inaccuracy. -Does not apply to any precise constant input like -throttle and attitude or rate piloting. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1 | 0.01 | 0.1 | - ### MAN_KILL_GEST_T (`FLOAT`) {#MAN_KILL_GEST_T} Trigger time for kill stick gesture. -The timeout for holding the left stick to the lower left -and the right stick to the lower right at the same time until the gesture -kills the actuators one-way. -A negative value disables the feature. +The timeout for holding the left stick to the lower left and the right stick to the lower right at the same time until the gesture kills the actuators one-way. A negative value disables the feature. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25271,13 +22983,7 @@ A negative value disables the feature. Timeout to allow the payload to execute the mission command. -Ensure: -gripper: NAV_CMD_DO_GRIPPER -has released before continuing mission. -winch: CMD_DO_WINCH -has delivered before continuing mission. -gimbal: CMD_DO_GIMBAL_MANAGER_PITCHYAW -has reached the commanded orientation before beginning to take pictures. +Ensure: gripper: NAV_CMD_DO_GRIPPER has released before continuing mission. winch: CMD_DO_WINCH has delivered before continuing mission. gimbal: CMD_DO_GIMBAL_MANAGER_PITCHYAW has reached the commanded orientation before beginning to take pictures. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25287,9 +22993,7 @@ has reached the commanded orientation before beginning to take pictures. Maximal horizontal distance from Home to first waypoint. -There will be a warning message if the current waypoint is more distant than MIS_DIST_1WP from Home. -Has no effect on mission validity. -Set a value of zero or less to disable. +There will be a warning message if the current waypoint is more distant than MIS_DIST_1WP from Home. Has no effect on mission validity. Set a value of zero or less to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25299,9 +23003,7 @@ Set a value of zero or less to disable. Landing abort min altitude. -Minimum altitude above landing point that the vehicle will climb to after an aborted landing. -Then vehicle will loiter in this altitude until further command is received. -Only applies to fixed-wing vehicles. +Minimum altitude above landing point that the vehicle will climb to after an aborted landing. Then vehicle will loiter in this altitude until further command is received. Only applies to fixed-wing vehicles. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25311,8 +23013,7 @@ Only applies to fixed-wing vehicles. Enable yaw control of the mount. (Only affects multicopters and ROI mission items). -If enabled, yaw commands will be sent to the mount and the vehicle will follow its heading towards the flight direction. -If disabled, the vehicle will yaw towards the ROI. +If enabled, yaw commands will be sent to the mount and the vehicle will follow its heading towards the flight direction. If disabled, the vehicle will yaw towards the ROI. **Values:** @@ -25327,8 +23028,7 @@ If disabled, the vehicle will yaw towards the ROI. Default take-off altitude. -This is the relative altitude the system will take off to -if not otherwise specified. +This is the relative altitude the system will take off to if not otherwise specified. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25338,8 +23038,7 @@ if not otherwise specified. Mission takeoff/landing required. -Specifies if a mission has to contain a takeoff and/or mission landing. -Validity of configured takeoffs/landings is checked independently of the setting here. +Specifies if a mission has to contain a takeoff and/or mission landing. Validity of configured takeoffs/landings is checked independently of the setting here. **Values:** @@ -25366,10 +23065,7 @@ Max yaw error in degrees needed for waypoint heading acceptance. Time in seconds we wait on reaching target heading at a waypoint if it is forced. -If set > 0 it will ignore the target heading for normal waypoint acceptance. If the -waypoint forces the heading the timeout will matter. For example on VTOL forwards transition. -Mainly useful for VTOLs that have less yaw authority and might not reach target -yaw in wind. Disabled by default. +If set > 0 it will ignore the target heading for normal waypoint acceptance. If the waypoint forces the heading the timeout will matter. For example on VTOL forwards transition. Mainly useful for VTOLs that have less yaw authority and might not reach target yaw in wind. Disabled by default. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25396,8 +23092,7 @@ Heading behavior in autonomous modes. Acceptance Radius. -Default acceptance radius, overridden by acceptance radius of waypoint if set. -For fixed wing the npfg switch distance is used for horizontal acceptance. +Default acceptance radius, overridden by acceptance radius of waypoint if set. For fixed wing the npfg switch distance is used for horizontal acceptance. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25415,8 +23110,7 @@ Force VTOL mode takeoff and land. FW Altitude Acceptance Radius before a landing. -Altitude acceptance used for the last waypoint before a fixed-wing landing. This is usually smaller -than the standard vertical acceptance because close to the ground higher accuracy is required. +Altitude acceptance used for the last waypoint before a fixed-wing landing. This is usually smaller than the standard vertical acceptance because close to the ground higher accuracy is required. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25436,13 +23130,11 @@ Acceptance radius for fixedwing altitude. Loiter radius (FW only). -Default value of loiter radius in fixed-wing mode (e.g. for Loiter mode). -The direction of the loiter can be set via the sign: A positive value for -clockwise, negative for counter-clockwise. +Default value of loiter radius in FW mode (e.g. for Loiter mode). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -10000 | 10000 | 0.5 | 80.0 | m | +| | 25 | 1000 | 0.5 | 80.0 | m | ### NAV_MC_ALT_RAD (`FLOAT`) {#NAV_MC_ALT_RAD} @@ -25458,11 +23150,7 @@ Acceptance radius for multicopter altitude. Minimum height above ground during Mission and RTL. -Minimum height above ground the vehicle is allowed to descend to during Mission and RTL, -excluding landing commands. -Requires a distance sensor to be set up. -Note: only prevents the vehicle from descending further, but does not force it to climb. -Set to a negative value to disable. +Minimum height above ground the vehicle is allowed to descend to during Mission and RTL, excluding landing commands. Requires a distance sensor to be set up. Note: only prevents the vehicle from descending further, but does not force it to climb. Set to a negative value to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25472,10 +23160,7 @@ Set to a negative value to disable. Minimum Loiter altitude. -This is the minimum altitude above Home the system will always obey in Loiter (Hold) mode if switched into this -mode without specifying an altitude (e.g. through Loiter switch on RC). -Doesn't affect Loiters that are part of Missions or that are entered through a reposition setpoint ("Go to"). -Set to a negative value to disable. +This is the minimum altitude above Home the system will always obey in Loiter (Hold) mode if switched into this mode without specifying an altitude (e.g. through Loiter switch on RC). Doesn't affect Loiters that are part of Missions or that are entered through a reposition setpoint ("Go to"). Set to a negative value to disable. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25485,8 +23170,7 @@ Set to a negative value to disable. Set traffic avoidance mode. -Enabling this will allow the system to respond -to transponder data from e.g. ADSB transponders +Enabling this will allow the system to respond to transponder data from e.g. ADSB transponders **Values:** @@ -25522,8 +23206,7 @@ Set NAV TRAFFIC AVOID vertical distance. Estimated time until collision. -Minimum acceptable time until collsion. -Assumes constant speed over 3d distance. +Minimum acceptable time until collsion. Assumes constant speed over 3d distance. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | --------- | --------- | ------- | ---- | @@ -25535,11 +23218,7 @@ Assumes constant speed over 3d distance. Multicopter air-mode. -The air-mode enables the mixer to increase the total thrust of the multirotor -in order to keep attitude and rate control even at low and high throttle. -This function should be disabled during tuning as it will help the controller -to diverge if the closed-loop is unstable (i.e. the vehicle is not tuned yet). -Enabling air-mode for yaw requires the use of an arming switch. +The air-mode enables the mixer to increase the total thrust of the multirotor in order to keep attitude and rate control even at low and high throttle. This function should be disabled during tuning as it will help the controller to diverge if the closed-loop is unstable (i.e. the vehicle is not tuned yet). Enabling air-mode for yaw requires the use of an arming switch. **Values:** @@ -25557,8 +23236,7 @@ Enabling air-mode for yaw requires the use of an arming switch. Custom configuration for ModalAI drones. -This can be set to indicate that drone behavior -needs to be changed to match a custom setting +This can be set to indicate that drone behavior needs to be changed to match a custom setting | Reboot | minValue | maxValue | increment | default | unit | | ------- | -------- | -------- | --------- | ------- | ---- | @@ -25570,9 +23248,7 @@ needs to be changed to match a custom setting Stabilize the mount. -Set to true for servo gimbal, false for passthrough. -This is required for a gimbal which is not capable of stabilizing itself -and relies on the IMU's attitude estimation. +Set to true for servo gimbal, false for passthrough. This is required for a gimbal which is not capable of stabilizing itself and relies on the IMU's attitude estimation. **Values:** @@ -25678,9 +23354,7 @@ If MNT_MODE_OUT is MAVLink gimbal protocol v1, mount configure/control commands Mount input mode. -This is the protocol used between the ground station and the autopilot. -Recommended is Auto, RC only or MAVLink gimbal protocol v2. -The rest will be deprecated. +This is the protocol used between the ground station and the autopilot. Recommended is Auto, RC only or MAVLink gimbal protocol v2. The rest will be deprecated. **Values:** @@ -25699,8 +23373,7 @@ The rest will be deprecated. Mount output mode. -This is the protocol used between the autopilot and a connected gimbal. -Recommended is the MAVLink gimbal protocol v2 if the gimbal supports it. +This is the protocol used between the autopilot and a connected gimbal. Recommended is the MAVLink gimbal protocol v2 if the gimbal supports it. **Values:** @@ -25799,9 +23472,7 @@ Input mode for RC gimbal input. Acro mode roll, pitch expo factor. -Exponential factor for tuning the input curve shape. -0 Purely linear input curve -1 Purely cubic input curve +Exponential factor for tuning the input curve shape. 0 Purely linear input curve 1 Purely cubic input curve | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25811,9 +23482,7 @@ Exponential factor for tuning the input curve shape. Acro mode yaw expo factor. -Exponential factor for tuning the input curve shape. -0 Purely linear input curve -1 Purely cubic input curve +Exponential factor for tuning the input curve shape. 0 Purely linear input curve 1 Purely cubic input curve | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25843,10 +23512,7 @@ Full stick deflection leads to this rate. Acro mode roll, pitch super expo factor. -"Superexponential" factor for refining the input curve shape tuned using MC_ACRO_EXPO. -0 Pure Expo function -0.7 reasonable shape enhancement for intuitive stick feel -0.95 very strong bent input curve only near maxima have effect +"Superexponential" factor for refining the input curve shape tuned using MC_ACRO_EXPO. 0 Pure Expo function 0.7 reasonable shape enhancement for intuitive stick feel 0.95 very strong bent input curve only near maxima have effect | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25856,10 +23522,7 @@ Acro mode roll, pitch super expo factor. Acro mode yaw super expo factor. -"Superexponential" factor for refining the input curve shape tuned using MC_ACRO_EXPO_Y. -0 Pure Expo function -0.7 reasonable shape enhancement for intuitive stick feel -0.95 very strong bent input curve only near maxima have effect +"Superexponential" factor for refining the input curve shape tuned using MC_ACRO_EXPO_Y. 0 Pure Expo function 0.7 reasonable shape enhancement for intuitive stick feel 0.95 very strong bent input curve only near maxima have effect | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25881,11 +23544,7 @@ Full stick deflection leads to this rate. Max pitch rate. -Limit for pitch rate in manual and auto modes (except acro). -Has effect for large rotations in autonomous mode, to avoid large control -output and mixer saturation. -This is not only limited by the vehicle's properties, but also by the maximum -measurement rate of the gyro. +Limit for pitch rate in manual and auto modes (except acro). Has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. This is not only limited by the vehicle's properties, but also by the maximum measurement rate of the gyro. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -25899,17 +23558,13 @@ Pitch proportional gain, i.e. desired angular speed in rad/s for error 1 rad. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | 12 | 0.1 | 4.0 | +| | 0.0 | 12 | 0.1 | 6.5 | ### MC_ROLLRATE_MAX (`FLOAT`) {#MC_ROLLRATE_MAX} Max roll rate. -Limit for roll rate in manual and auto modes (except acro). -Has effect for large rotations in autonomous mode, to avoid large control -output and mixer saturation. -This is not only limited by the vehicle's properties, but also by the maximum -measurement rate of the gyro. +Limit for roll rate in manual and auto modes (except acro). Has effect for large rotations in autonomous mode, to avoid large control output and mixer saturation. This is not only limited by the vehicle's properties, but also by the maximum measurement rate of the gyro. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -25923,7 +23578,7 @@ Roll proportional gain, i.e. desired angular speed in rad/s for error 1 rad. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | 12 | 0.1 | 4.0 | +| | 0.0 | 12 | 0.1 | 6.5 | ### MC_YAWRATE_MAX (`FLOAT`) {#MC_YAWRATE_MAX} @@ -25947,11 +23602,7 @@ Yaw proportional gain, i.e. desired angular speed in rad/s for error 1 rad. Yaw weight. -A fraction [0,1] deprioritizing yaw compared to roll and pitch in non-linear attitude control. -Deprioritizing yaw is necessary because multicopters have much less control authority -in yaw compared to the other axes and it makes sense because yaw is not critical for -stable hovering or 3D navigation. -For yaw control tuning use MC_YAW_P. This ratio has no impact on the yaw gain. +A fraction [0,1] deprioritizing yaw compared to roll and pitch in non-linear attitude control. Deprioritizing yaw is necessary because multicopters have much less control authority in yaw compared to the other axes and it makes sense because yaw is not critical for stable hovering or 3D navigation. For yaw control tuning use MC_YAW_P. This ratio has no impact on the yaw gain. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -25961,8 +23612,7 @@ For yaw control tuning use MC_YAW_P. This ratio has no impact on the yaw gain. Maximum yaw acceleration in autonomous modes. -Limits the acceleration of the yaw setpoint to avoid large -control output and mixer saturation. +Limits the acceleration of the yaw setpoint to avoid large control output and mixer saturation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ------- | @@ -25972,8 +23622,7 @@ control output and mixer saturation. Maximum yaw rate in autonomous modes. -Limits the rate of change of the yaw setpoint to avoid large -control output and mixer saturation. +Limits the rate of change of the yaw setpoint to avoid large control output and mixer saturation. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -26035,9 +23684,7 @@ Setting this parameter to 0 disables the filter Acceleration to tilt coupling. -Set to decouple tilt from vertical acceleration. -This provides smoother flight but slightly worse tracking in position and auto modes. -Unset if accurate position tracking during dynamic maneuvers is more important than a smooth flight. +Set to decouple tilt from vertical acceleration. This provides smoother flight but slightly worse tracking in position and auto modes. Unset if accurate position tracking during dynamic maneuvers is more important than a smooth flight. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -26065,9 +23712,7 @@ When piloting manually, this parameter is only used in MPC_POS_MODE Acceleration Maximum horizontal acceleration. -MPC_POS_MODE -1 just deceleration -4 not used, use MPC_ACC_HOR instead +MPC_POS_MODE 1 just deceleration 4 not used, use MPC_ACC_HOR instead | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -26085,13 +23730,7 @@ Maximum upwards acceleration in climb rate controlled modes. Altitude reference mode. -Control height -0: relative earth frame origin which may drift due to sensors -1: relative to ground (requires distance sensor) which changes with terrain variation. -It will revert to relative earth frame if the distance to ground estimate becomes invalid. -2: relative to ground (requires distance sensor) when stationary -and relative to earth frame when moving horizontally. -The speed threshold is MPC_HOLD_MAX_XY +Control height 0: relative earth frame origin which may drift due to sensors 1: relative to ground (requires distance sensor) which changes with terrain variation. It will revert to relative earth frame if the distance to ground estimate becomes invalid. 2: relative to ground (requires distance sensor) when stationary and relative to earth frame when moving horizontally. The speed threshold is MPC_HOLD_MAX_XY **Values:** @@ -26103,6 +23742,16 @@ The speed threshold is MPC_HOLD_MAX_XY | ------ | -------- | -------- | --------- | ------- | ---- | | | 0 | 2 | | 2 | +### MPC_HOLD_DZ (`FLOAT`) {#MPC_HOLD_DZ} + +Deadzone for sticks in manual piloted modes. + +Does not apply to manual throttle and direct attitude piloting by stick. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1 | 0.01 | 0.1 | + ### MPC_HOLD_MAX_XY (`FLOAT`) {#MPC_HOLD_MAX_XY} Maximum horizontal velocity for which position hold is enabled (use 0 to disable check). @@ -26127,8 +23776,7 @@ Only used with MPC_ALT_MODE 1 Jerk limit in autonomous modes. -Limit the maximum jerk of the vehicle (how fast the acceleration can change). -A lower value leads to smoother vehicle motions but also limited agility. +Limit the maximum jerk of the vehicle (how fast the acceleration can change). A lower value leads to smoother vehicle motions but also limited agility. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -26138,10 +23786,7 @@ A lower value leads to smoother vehicle motions but also limited agility. Maximum horizontal and vertical jerk in Position/Altitude mode. -Limit the maximum jerk (acceleration change) of the vehicle. -A lower value leads to smoother motions but limits agility. -Setting this to the maximum value essentially disables the limit. -Only used with MPC_POS_MODE Acceleration based. +Limit the maximum jerk (acceleration change) of the vehicle. A lower value leads to smoother motions but limits agility. Setting this to the maximum value essentially disables the limit. Only used with MPC_POS_MODE Acceleration based. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -26151,9 +23796,7 @@ Only used with MPC_POS_MODE Acceleration based. Altitude for 1. step of slow landing (descend). -Below this altitude descending velocity gets limited to a value -between "MPC_Z_VEL_MAX_DN" (or "MPC_Z_V_AUTO_DN") and "MPC_LAND_SPEED" -Value needs to be higher than "MPC_LAND_ALT2" +Below this altitude descending velocity gets limited to a value between "MPC_Z_VEL_MAX_DN" (or "MPC_Z_V_AUTO_DN") and "MPC_LAND_SPEED" Value needs to be higher than "MPC_LAND_ALT2" | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26163,9 +23806,7 @@ Value needs to be higher than "MPC_LAND_ALT2" Altitude for 2. step of slow landing (landing). -Below this altitude descending velocity gets -limited to "MPC_LAND_SPEED" -Value needs to be lower than "MPC_LAND_ALT1" +Below this altitude descending velocity gets limited to "MPC_LAND_SPEED" Value needs to be lower than "MPC_LAND_ALT1" | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26175,8 +23816,7 @@ Value needs to be lower than "MPC_LAND_ALT1" Altitude for 3. step of slow landing. -If a valid distance sensor measurement to the ground is available, -limit descending velocity to "MPC_LAND_CRWL" below this altitude. +If a valid distance sensor measurement to the ground is available, limit descending velocity to "MPC_LAND_CRWL" below this altitude. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26196,27 +23836,17 @@ Used below MPC_LAND_ALT3 if distance sensor data is availabe. User assisted landing radius. -When nudging is enabled (see MPC_LAND_RC_HELP), this defines the maximum -allowed horizontal displacement from the original landing point. - -- If inside of the radius, only allow nudging inputs that do not move the vehicle outside of it. -- If outside of the radius, only allow nudging inputs that move the vehicle back towards it. - Set it to -1 for infinite radius. +When nudging is enabled (see MPC_LAND_RC_HELP), this controls the maximum allowed horizontal displacement from the original landing point. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -1 | | 1 | -1.0 | m | +| | 0 | | 1 | 1000. | m | ### MPC_LAND_RC_HELP (`INT32`) {#MPC_LAND_RC_HELP} Enable nudging based on user input during autonomous land routine. -Using stick input the vehicle can be moved horizontally and yawed. -The descend speed is amended: -stick full up - 0 -stick centered - MPC_LAND_SPEED -stick full down - 2 \* MPC_LAND_SPEED -Manual override during auto modes has to be disabled to use this feature (see COM_RC_OVERRIDE). +Using stick input the vehicle can be moved horizontally and yawed. The descend speed is amended: stick full up - 0 stick centered - MPC_LAND_SPEED stick full down - 2 \* MPC_LAND_SPEED Manual override during auto modes has to be disabled to use this feature (see COM_RC_OVERRIDE). **Values:** @@ -26239,9 +23869,7 @@ Landing descend rate. Minimum collective thrust in Stabilized mode. -The value is mapped to the lowest throttle stick position in Stabilized mode. -Too low collective thrust leads to loss of roll/pitch/yaw torque control authority. -Airmode is used to keep torque authority with zero thrust (see MC_AIRMODE). +The value is mapped to the lowest throttle stick position in Stabilized mode. Too low collective thrust leads to loss of roll/pitch/yaw torque control authority. Airmode is used to keep torque authority with zero thrust (see MC_AIRMODE). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26249,7 +23877,7 @@ Airmode is used to keep torque authority with zero thrust (see MC_AIRMODE). ### MPC_MAN_TILT_MAX (`FLOAT`) {#MPC_MAN_TILT_MAX} -Maximal tilt angle in Stabilized, Altitude and Altitude Cruise mode. +Maximal tilt angle in Stabilized or Altitude mode. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26267,8 +23895,7 @@ Max manual yaw rate for Stabilized, Altitude, Position mode. Manual yaw rate input filter time constant. -Not used in Stabilized mode -Setting this parameter to 0 disables the filter +Not used in Stabilized mode Setting this parameter to 0 disables the filter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26278,13 +23905,7 @@ Setting this parameter to 0 disables the filter Position/Altitude mode variant. -The supported sub-modes are: -Direct velocity: -Sticks directly map to velocity setpoints without smoothing. -Also applies to vertical direction and Altitude mode. -Useful for velocity control tuning. -Acceleration based: -Sticks map to acceleration and there's a virtual brake drag +The supported sub-modes are: Direct velocity: Sticks directly map to velocity setpoints without smoothing. Also applies to vertical direction and Altitude mode. Useful for velocity control tuning. Acceleration based: Sticks map to acceleration and there's a virtual brake drag **Values:** @@ -26299,15 +23920,7 @@ Sticks map to acceleration and there's a virtual brake drag Thrust curve mapping in Stabilized Mode. -Defines how the throttle stick is mapped to collective thrust in Stabilized mode. -Rescale to hover thrust estimate: -Stick input is linearly rescaled, such that a centered throttle stick corresponds to the hover thrust estimator's output. -No rescale: -Directly map the stick 1:1 to the output. -Can be useful with very low hover thrust which leads to much distortion and the upper half getting sensitive. -Rescale to hover thrust parameter: -Similar to rescaling to the hover thrust estimate, but it uses the hover thrust parameter value (see MPC_THR_HOVER) instead of estimated value. -With MPC_THR_HOVER 0.5 it's equivalent to No rescale. +Defines how the throttle stick is mapped to collective thrust in Stabilized mode. Rescale to hover thrust estimate: Stick input is linearly rescaled, such that a centered throttle stick corresponds to the hover thrust estimator's output. No rescale: Directly map the stick 1:1 to the output. Can be useful with very low hover thrust which leads to much distortion and the upper half getting sensitive. Rescale to hover thrust parameter: Similar to rescaling to the hover thrust estimate, but it uses the hover thrust parameter value (see MPC_THR_HOVER) instead of estimated value. With MPC_THR_HOVER 0.5 it's equivalent to No rescale. **Values:** @@ -26323,10 +23936,7 @@ With MPC_THR_HOVER 0.5 it's equivalent to No rescale. Vertical thrust required to hover. -Mapped to center throttle stick in Stabilized mode (see MPC_THR_CURVE). -Used for initialization of the hover thrust estimator (see MPC_USE_HTE). -The estimated hover thrust is used as base for zero vertical acceleration in altitude control. -The hover thrust is important for land detection to work correctly. +Mapped to center throttle stick in Stabilized mode (see MPC_THR_CURVE). Used for initialization of the hover thrust estimator (see MPC_USE_HTE). The estimated hover thrust is used as base for zero vertical acceleration in altitude control. The hover thrust is important for land detection to work correctly. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26346,9 +23956,7 @@ Limit allowed thrust e.g. for indoor test of overpowered vehicle. Minimum collective thrust in climb rate controlled modes. -Too low thrust leads to loss of roll/pitch/yaw torque control authority. -With airmode enabled this parameters can be set to 0 -while still keeping torque authority (see MC_AIRMODE). +Too low thrust leads to loss of roll/pitch/yaw torque control authority. With airmode enabled this parameters can be set to 0 while still keeping torque authority (see MC_AIRMODE). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26358,8 +23966,7 @@ while still keeping torque authority (see MC_AIRMODE). Horizontal thrust margin. -Margin that is kept for horizontal control when higher priority vertical thrust is saturated. -To avoid completely starving horizontal control with high vertical error. +Margin that is kept for horizontal control when higher priority vertical thrust is saturated. To avoid completely starving horizontal control with high vertical error. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26369,8 +23976,7 @@ To avoid completely starving horizontal control with high vertical error. Maximum tilt angle in air. -Absolute maximum for all velocity or acceleration controlled modes. -Any higher value is truncated. +Absolute maximum for all velocity or acceleration controlled modes. Any higher value is truncated. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26390,9 +23996,7 @@ Tighter tilt limit during takeoff to avoid tip over. Smooth takeoff ramp time constant. -Increasing this value will make climb rate controlled takeoff slower. -If it's too slow the drone might scratch the ground and tip over. -A time constant of 0 disables the ramp +Increasing this value will make climb rate controlled takeoff slower. If it's too slow the drone might scratch the ground and tip over. A time constant of 0 disables the ramp | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26410,8 +24014,7 @@ Takeoff climb rate. Use hover thrust estimate for altitude control. -Disable to use the fixed parameter MPC_THR_HOVER instead of the hover thrust estimate in the position controller. -This parameter does not influence Stabilized mode throttle curve (see MPC_THR_CURVE). +Disable to use the fixed parameter MPC_THR_HOVER instead of the hover thrust estimate in the position controller. This parameter does not influence Stabilized mode throttle curve (see MPC_THR_CURVE). | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ----------- | ---- | @@ -26441,9 +24044,7 @@ A value of 0 disables the filter. Maximum horizontal velocity setpoint in Position mode. -Must be smaller than MPC_XY_VEL_MAX. -The maximum sideways and backward speed can be set differently -using MPC_VEL_MAN_SIDE and MPC_VEL_MAN_BACK, respectively. +Must be smaller than MPC_XY_VEL_MAX. The maximum sideways and backward speed can be set differently using MPC_VEL_MAN_SIDE and MPC_VEL_MAN_BACK, respectively. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26453,8 +24054,7 @@ using MPC_VEL_MAN_SIDE and MPC_VEL_MAN_BACK, respectively. Maximum backward velocity in Position mode. -If set to a negative value or larger than -MPC_VEL_MANUAL then MPC_VEL_MANUAL is used. +If set to a negative value or larger than MPC_VEL_MANUAL then MPC_VEL_MANUAL is used. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26464,8 +24064,7 @@ MPC_VEL_MANUAL then MPC_VEL_MANUAL is used. Maximum sideways velocity in Position mode. -If set to a negative value or larger than -MPC_VEL_MANUAL then MPC_VEL_MANUAL is used. +If set to a negative value or larger than MPC_VEL_MANUAL then MPC_VEL_MANUAL is used. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26485,8 +24084,7 @@ A value of 0 disables the filter. Velocity notch filter frequency. -The center frequency for the 2nd order notch filter on the velocity. -A value of 0 disables the filter. +The center frequency for the 2nd order notch filter on the velocity. A value of 0 disables the filter. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26506,17 +24104,22 @@ e.g. in Missions, RTL, Goto if the waypoint does not specify differently Maximum horizontal error allowed by the trajectory generator. -The integration speed of the trajectory setpoint is linearly -reduced with the horizontal position tracking error. When the -error is above this parameter, the integration of the -trajectory is stopped to wait for the drone. -This value can be adjusted depending on the tracking -capabilities of the vehicle. +The integration speed of the trajectory setpoint is linearly reduced with the horizontal position tracking error. When the error is above this parameter, the integration of the trajectory is stopped to wait for the drone. This value can be adjusted depending on the tracking capabilities of the vehicle. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | | | 0.1 | 10 | 1 | 2. | +### MPC_XY_MAN_EXPO (`FLOAT`) {#MPC_XY_MAN_EXPO} + +Manual position control stick exponential curve sensitivity. + +The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve 1 Purely cubic input curve + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1 | 0.01 | 0.6 | + ### MPC_XY_P (`FLOAT`) {#MPC_XY_P} Proportional gain for horizontal position error. @@ -26539,9 +24142,7 @@ Proportional gain for horizontal trajectory position error. Overall Horizontal Velocity Limit. -If set to a value greater than zero, other parameters are automatically set (such as -MPC_XY_VEL_MAX or MPC_VEL_MANUAL). -If set to a negative value, the existing individual parameters are used. +If set to a value greater than zero, other parameters are automatically set (such as MPC_XY_VEL_MAX or MPC_VEL_MANUAL). If set to a negative value, the existing individual parameters are used. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26561,8 +24162,7 @@ Defined as corrective acceleration in m/s^2 per m/s^2 velocity derivative Integral gain for horizontal velocity error. -Defined as correction acceleration in m/s^2 per m velocity integral -Allows to eliminate steady state errors in disturbances like wind. +Defined as correction acceleration in m/s^2 per m velocity integral Allows to eliminate steady state errors in disturbances like wind. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26572,8 +24172,7 @@ Allows to eliminate steady state errors in disturbances like wind. Maximum horizontal velocity. -Absolute maximum for all velocity controlled modes. -Any higher value is truncated. +Absolute maximum for all velocity controlled modes. Any higher value is truncated. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26589,6 +24188,26 @@ Defined as corrective acceleration in m/s^2 per m/s velocity error | ------ | -------- | -------- | --------- | ------- | ---- | | | 1.2 | 5 | 0.1 | 1.8 | +### MPC_YAW_EXPO (`FLOAT`) {#MPC_YAW_EXPO} + +Manual control stick yaw rotation exponential curve. + +The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve 1 Purely cubic input curve + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1 | 0.01 | 0.6 | + +### MPC_Z_MAN_EXPO (`FLOAT`) {#MPC_Z_MAN_EXPO} + +Manual control stick vertical exponential curve. + +The higher the value the less sensitivity the stick has around zero while still reaching the maximum value with full stick deflection. 0 Purely linear input curve 1 Purely cubic input curve + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0 | 1 | 0.01 | 0.6 | + ### MPC_Z_P (`FLOAT`) {#MPC_Z_P} Proportional gain for vertical position error. @@ -26603,9 +24222,7 @@ Defined as corrective velocity in m/s per m position error Overall Vertical Velocity Limit. -If set to a value greater than zero, other parameters are automatically set (such as -MPC_Z_VEL_MAX_UP or MPC_LAND_SPEED). -If set to a negative value, the existing individual parameters are used. +If set to a value greater than zero, other parameters are automatically set (such as MPC_Z_VEL_MAX_UP or MPC_LAND_SPEED). If set to a negative value, the existing individual parameters are used. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26635,9 +24252,7 @@ Defined as corrective acceleration in m/s^2 per m velocity integral Maximum descent velocity. -Absolute maximum for all climb rate controlled modes. -In manually piloted modes full stick deflection commands this velocity. -For default autonomous velocity see MPC_Z_V_AUTO_UP +Absolute maximum for all climb rate controlled modes. In manually piloted modes full stick deflection commands this velocity. For default autonomous velocity see MPC_Z_V_AUTO_UP | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26647,9 +24262,7 @@ For default autonomous velocity see MPC_Z_V_AUTO_UP Maximum ascent velocity. -Absolute maximum for all climb rate controlled modes. -In manually piloted modes full stick deflection commands this velocity. -For default autonomous velocity see MPC_Z_V_AUTO_UP +Absolute maximum for all climb rate controlled modes. In manually piloted modes full stick deflection commands this velocity. For default autonomous velocity see MPC_Z_V_AUTO_UP | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26685,23 +24298,11 @@ For manually controlled modes and offboard see MPC_Z_VEL_MAX_UP | ------ | -------- | -------- | --------- | ------- | ---- | | | 0.5 | 8 | 0.5 | 3. | m/s | -### SC_MAN_TILT_MAX (`FLOAT`) {#SC_MAN_TILT_MAX} - -Maximal tilt angle in Stabilized or Manual mode. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 90 | 1 | 90. | deg | - ### SYS_VEHICLE_RESP (`FLOAT`) {#SYS_VEHICLE_RESP} Responsiveness. -Changes the overall responsiveness of the vehicle. -The higher the value, the faster the vehicle will react. -If set to a value greater than zero, other parameters are automatically set (such as -the acceleration or jerk limits). -If set to a negative value, the existing individual parameters are used. +Changes the overall responsiveness of the vehicle. The higher the value, the faster the vehicle will react. If set to a value greater than zero, other parameters are automatically set (such as the acceleration or jerk limits). If set to a negative value, the existing individual parameters are used. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26737,9 +24338,7 @@ Maximum yawrate the weathervane controller is allowed to demand. Default horizontal velocity limit. -This value is used in slow mode if -no aux channel is mapped and -no limit is commanded through MAVLink. +This value is used in slow mode if no aux channel is mapped and no limit is commanded through MAVLink. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26749,9 +24348,7 @@ no limit is commanded through MAVLink. Default vertical velocity limit. -This value is used in slow mode if -no aux channel is mapped and -no limit is commanded through MAVLink. +This value is used in slow mode if no aux channel is mapped and no limit is commanded through MAVLink. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26761,9 +24358,7 @@ no limit is commanded through MAVLink. Default yaw rate limit. -This value is used in slow mode if -no aux channel is mapped and -no limit is commanded through MAVLink. +This value is used in slow mode if no aux channel is mapped and no limit is commanded through MAVLink. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ----- | @@ -26877,11 +24472,7 @@ The lowest input maps and is clamped to this rate. Battery power level scaler. -This compensates for voltage drop of the battery over time by attempting to -normalize performance across the operating range of the battery. The copter -should constantly behave as if it was fully charged with reduced max acceleration -at lower battery percentages. i.e. if hover is at 0.5 throttle at 100% battery, -it will still be 0.5 at 60% battery. +This compensates for voltage drop of the battery over time by attempting to normalize performance across the operating range of the battery. The copter should constantly behave as if it was fully charged with reduced max acceleration at lower battery percentages. i.e. if hover is at 0.5 throttle at 100% battery, it will still be 0.5 at 60% battery. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------------ | ---- | @@ -26921,14 +24512,7 @@ Pitch rate integral gain. Can be set to compensate static thrust difference or g Pitch rate controller gain. -Global gain of the controller. -This gain scales the P, I and D terms of the controller: -output = MC_PITCHRATE_K _ (MC_PITCHRATE_P _ error - -- MC_PITCHRATE_I \* error_integral -- MC_PITCHRATE_D \* error_derivative) - Set MC_PITCHRATE_P=1 to implement a PID in the ideal form. - Set MC_PITCHRATE_K=1 to implement a PID in the parallel form. +Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_PITCHRATE_K _ (MC_PITCHRATE_P _ error + MC_PITCHRATE_I _ error_integral + MC_PITCHRATE_D _ error_derivative) Set MC_PITCHRATE_P=1 to implement a PID in the ideal form. Set MC_PITCHRATE_K=1 to implement a PID in the parallel form. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -26988,14 +24572,7 @@ Roll rate integral gain. Can be set to compensate static thrust difference or gr Roll rate controller gain. -Global gain of the controller. -This gain scales the P, I and D terms of the controller: -output = MC_ROLLRATE_K _ (MC_ROLLRATE_P _ error - -- MC_ROLLRATE_I \* error_integral -- MC_ROLLRATE_D \* error_derivative) - Set MC_ROLLRATE_P=1 to implement a PID in the ideal form. - Set MC_ROLLRATE_K=1 to implement a PID in the parallel form. +Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_ROLLRATE_K _ (MC_ROLLRATE_P _ error + MC_ROLLRATE_I _ error_integral + MC_ROLLRATE_D _ error_derivative) Set MC_ROLLRATE_P=1 to implement a PID in the ideal form. Set MC_ROLLRATE_K=1 to implement a PID in the parallel form. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -27029,7 +24606,7 @@ Yaw rate differential gain. Small values help reduce fast oscillations. If value | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | | 0.0005 | 0.0 | +| | 0.0 | | 0.01 | 0.0 | ### MC_YAWRATE_FF (`FLOAT`) {#MC_YAWRATE_FF} @@ -27039,7 +24616,7 @@ Improves tracking performance. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | | | 0.0 | +| | 0.0 | | 0.01 | 0.0 | ### MC_YAWRATE_I (`FLOAT`) {#MC_YAWRATE_I} @@ -27055,18 +24632,11 @@ Yaw rate integral gain. Can be set to compensate static thrust difference or gra Yaw rate controller gain. -Global gain of the controller. -This gain scales the P, I and D terms of the controller: -output = MC_YAWRATE_K _ (MC_YAWRATE_P _ error - -- MC_YAWRATE_I \* error_integral -- MC_YAWRATE_D \* error_derivative) - Set MC_YAWRATE_P=1 to implement a PID in the ideal form. - Set MC_YAWRATE_K=1 to implement a PID in the parallel form. +Global gain of the controller. This gain scales the P, I and D terms of the controller: output = MC_YAWRATE_K _ (MC_YAWRATE_P _ error + MC_YAWRATE_I _ error_integral + MC_YAWRATE_D _ error_derivative) Set MC_YAWRATE_P=1 to implement a PID in the ideal form. Set MC_YAWRATE_K=1 to implement a PID in the parallel form. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.01 | 5.0 | 0.0005 | 1.0 | +| | 0.0 | 5.0 | 0.0005 | 1.0 | ### MC_YAWRATE_P (`FLOAT`) {#MC_YAWRATE_P} @@ -27082,8 +24652,7 @@ Yaw rate proportional gain, i.e. control output for angular speed error 1 rad/s. Low pass filter cutoff frequency for yaw torque setpoint. -Reduces vibrations by lowering high frequency torque caused by rotor acceleration. -0 disables the filter +Reduces vibrations by lowering high frequency torque caused by rotor acceleration. 0 disables the filter | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -27099,48 +24668,6 @@ Can be set to increase the amount of integrator available to counteract disturba | ------ | -------- | -------- | --------- | ------- | ---- | | | 0.0 | | 0.01 | 0.30 | -## Neural Control - -### MC_NN_EN (`INT32`) {#MC_NN_EN} - -If true the neural network control is automatically started on boot. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ----------- | ---- | -| | | | | Enabled (1) | - -### MC_NN_MANL_CTRL (`INT32`) {#MC_NN_MANL_CTRL} - -Enable or disable setting the trajectory setpoint with manual control. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------- | -------- | -------- | --------- | ----------- | ---- | -| ✓ | | | | Enabled (1) | - -### MC_NN_MAX_RPM (`INT32`) {#MC_NN_MAX_RPM} - -The maximum RPM of the motors. Used to normalize the output of the neural network. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 80000 | | 22000 | - -### MC_NN_MIN_RPM (`INT32`) {#MC_NN_MIN_RPM} - -The minimum RPM of the motors. Used to normalize the output of the neural network. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 80000 | | 1000 | - -### MC_NN_THRST_COEF (`FLOAT`) {#MC_NN_THRST_COEF} - -Thrust coefficient of the motors. Used to normalize the output of the neural network. Divided by 100 000. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0.0 | 5.0 | | 1.2 | - ## OSD ### MSP_OSD_CONFIG (`INT32`) {#MSP_OSD_CONFIG} @@ -27172,8 +24699,7 @@ Configure on which serial port to run MSP OSD. Enable/Disable the ATXXX OSD Chip. -Configure the ATXXXX OSD Chip (mounted on the OmnibusF4SD board) and -select the transmission standard. +Configure the ATXXXX OSD Chip (mounted on the OmnibusF4SD board) and select the transmission standard. **Values:** @@ -27189,9 +24715,7 @@ select the transmission standard. OSD Crosshairs Height. -Controls the vertical position of the crosshair display. -Resolution is limited by OSD to 15 discrete values. Negative -values will display the crosshairs below the horizon +Controls the vertical position of the crosshair display. Resolution is limited by OSD to 15 discrete values. Negative values will display the crosshairs below the horizon | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -27217,22 +24741,11 @@ Minimum security of log level to display on the OSD. | ------ | -------- | -------- | --------- | ------- | ---- | | | | | | 3 | -### OSD_RC_STICK (`INT32`) {#OSD_RC_STICK} - -OSD RC Stick commands. - -Forward RC stick input to VTX when disarmed - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 1 | | 1 | - ### OSD_SCROLL_RATE (`INT32`) {#OSD_SCROLL_RATE} OSD Scroll Rate (ms). -Scroll rate in milliseconds for OSD messages longer than available character width. -This is lower-bounded by the nominal loop rate of this module. +Scroll rate in milliseconds for OSD messages longer than available character width. This is lower-bounded by the nominal loop rate of this module. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -27289,11 +24802,7 @@ Set to 1 to enable S.BUS version 1 output instead of RSSI. Thrust to motor control signal model parameter. -Parameter used to model the nonlinear relationship between -motor control signal (e.g. PWM) and static thrust. -The model is: rel_thrust = factor _ rel_signal^2 + (1-factor) _ rel_signal, -where rel_thrust is the normalized thrust between 0 and 1, and -rel_signal is the relative motor control signal between 0 and 1. +Parameter used to model the nonlinear relationship between motor control signal (e.g. PWM) and static thrust. The model is: rel_thrust = factor _ rel_signal^2 + (1-factor) _ rel_signal, where rel_thrust is the normalized thrust between 0 and 1, and rel_signal is the relative motor control signal between 0 and 1. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | @@ -27301,18 +24810,23 @@ rel_signal is the relative motor control signal between 0 and 1. ## Payload Deliverer +### PD_GRIPPER_EN (`INT32`) {#PD_GRIPPER_EN} + +Enable Gripper actuation in Payload Deliverer. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------- | -------- | -------- | --------- | ------------ | ---- | +| ✓ | | | | Disabled (0) | + ### PD_GRIPPER_TO (`FLOAT`) {#PD_GRIPPER_TO} Timeout for successful gripper actuation acknowledgement. -Maximum time Gripper will wait while the successful griper actuation isn't recognised. -If the gripper has no feedback sensor, it will simply wait for -this time before considering gripper actuation successful and publish a -'VehicleCommandAck' signaling successful gripper action +Maximum time Gripper will wait while the successful griper actuation isn't recognised. If the gripper has no feedback sensor, it will simply wait for this time before considering gripper actuation successful and publish a 'VehicleCommandAck' signaling successful gripper action | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | | | 1 | s | +| | 0 | | | 3 | s | ### PD_GRIPPER_TYPE (`INT32`) {#PD_GRIPPER_TYPE} @@ -27465,6 +24979,16 @@ Select your RC input protocol or auto to scan. ## Radio Calibration +### RC10_DZ (`FLOAT`) {#RC10_DZ} + +RC channel 10 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC10_MAX (`FLOAT`) {#RC10_MAX} RC channel 10 maximum. @@ -27510,6 +25034,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC11_DZ (`FLOAT`) {#RC11_DZ} + +RC channel 11 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC11_MAX (`FLOAT`) {#RC11_MAX} RC channel 11 maximum. @@ -27555,6 +25089,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC12_DZ (`FLOAT`) {#RC12_DZ} + +RC channel 12 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC12_MAX (`FLOAT`) {#RC12_MAX} RC channel 12 maximum. @@ -27600,6 +25144,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC13_DZ (`FLOAT`) {#RC13_DZ} + +RC channel 13 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC13_MAX (`FLOAT`) {#RC13_MAX} RC channel 13 maximum. @@ -27645,6 +25199,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC14_DZ (`FLOAT`) {#RC14_DZ} + +RC channel 14 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC14_MAX (`FLOAT`) {#RC14_MAX} RC channel 14 maximum. @@ -27690,6 +25254,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC15_DZ (`FLOAT`) {#RC15_DZ} + +RC channel 15 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC15_MAX (`FLOAT`) {#RC15_MAX} RC channel 15 maximum. @@ -27735,6 +25309,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC16_DZ (`FLOAT`) {#RC16_DZ} + +RC channel 16 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC16_MAX (`FLOAT`) {#RC16_MAX} RC channel 16 maximum. @@ -27780,6 +25364,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC17_DZ (`FLOAT`) {#RC17_DZ} + +RC channel 17 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC17_MAX (`FLOAT`) {#RC17_MAX} RC channel 17 maximum. @@ -27825,6 +25419,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC18_DZ (`FLOAT`) {#RC18_DZ} + +RC channel 18 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 0.0 | + ### RC18_MAX (`FLOAT`) {#RC18_MAX} RC channel 18 maximum. @@ -27870,6 +25474,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | +### RC1_DZ (`FLOAT`) {#RC1_DZ} + +RC channel 1 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 10.0 | us | + ### RC1_MAX (`FLOAT`) {#RC1_MAX} RC channel 1 maximum. @@ -27915,6 +25529,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500.0 | us | +### RC2_DZ (`FLOAT`) {#RC2_DZ} + +RC channel 2 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 10.0 | us | + ### RC2_MAX (`FLOAT`) {#RC2_MAX} RC channel 2 maximum. @@ -27960,6 +25584,16 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500.0 | us | +### RC3_DZ (`FLOAT`) {#RC3_DZ} + +RC channel 3 dead zone. + +The +- range of this value around the trim value will be considered as zero. + +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 0.0 | 100.0 | | 10.0 | us | + ### RC3_MAX (`FLOAT`) {#RC3_MAX} RC channel 3 maximum. @@ -28005,953 +25639,359 @@ Mid point value | ------ | -------- | -------- | --------- | ------- | ---- | | | 800.0 | 2200.0 | | 1500 | us | -### RC4_MAX (`FLOAT`) {#RC4_MAX} - -RC channel 4 maximum. - -Maximum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 1500.0 | 2200.0 | | 2000 | us | - -### RC4_MIN (`FLOAT`) {#RC4_MIN} - -RC channel 4 minimum. - -Minimum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 1500.0 | | 1000 | us | - -### RC4_REV (`FLOAT`) {#RC4_REV} - -RC channel 4 reverse. - -Set to -1 to reverse channel. - -**Values:** - -- `-1.0`: Reverse -- `1.0`: Normal - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1.0 | 1.0 | | 1.0 | - -### RC4_TRIM (`FLOAT`) {#RC4_TRIM} - -RC channel 4 trim. - -Mid point value - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 2200.0 | | 1500 | us | - -### RC5_MAX (`FLOAT`) {#RC5_MAX} - -RC channel 5 maximum. - -Maximum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 1500.0 | 2200.0 | | 2000 | us | - -### RC5_MIN (`FLOAT`) {#RC5_MIN} - -RC channel 5 minimum. - -Minimum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 1500.0 | | 1000 | us | - -### RC5_REV (`FLOAT`) {#RC5_REV} - -RC channel 5 reverse. - -Set to -1 to reverse channel. - -**Values:** - -- `-1.0`: Reverse -- `1.0`: Normal - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1.0 | 1.0 | | 1.0 | - -### RC5_TRIM (`FLOAT`) {#RC5_TRIM} - -RC channel 5 trim. - -Mid point value - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 2200.0 | | 1500 | us | - -### RC6_MAX (`FLOAT`) {#RC6_MAX} - -RC channel 6 maximum. - -Maximum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 1500.0 | 2200.0 | | 2000 | us | - -### RC6_MIN (`FLOAT`) {#RC6_MIN} - -RC channel 6 minimum. - -Minimum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 1500.0 | | 1000 | us | - -### RC6_REV (`FLOAT`) {#RC6_REV} - -RC channel 6 reverse. - -Set to -1 to reverse channel. - -**Values:** - -- `-1.0`: Reverse -- `1.0`: Normal - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1.0 | 1.0 | | 1.0 | - -### RC6_TRIM (`FLOAT`) {#RC6_TRIM} - -RC channel 6 trim. - -Mid point value - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 2200.0 | | 1500 | us | - -### RC7_MAX (`FLOAT`) {#RC7_MAX} - -RC channel 7 maximum. - -Maximum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 1500.0 | 2200.0 | | 2000 | us | - -### RC7_MIN (`FLOAT`) {#RC7_MIN} - -RC channel 7 minimum. - -Minimum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 1500.0 | | 1000 | us | - -### RC7_REV (`FLOAT`) {#RC7_REV} - -RC channel 7 reverse. - -Set to -1 to reverse channel. - -**Values:** - -- `-1.0`: Reverse -- `1.0`: Normal - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1.0 | 1.0 | | 1.0 | - -### RC7_TRIM (`FLOAT`) {#RC7_TRIM} - -RC channel 7 trim. - -Mid point value - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 2200.0 | | 1500 | us | - -### RC8_MAX (`FLOAT`) {#RC8_MAX} - -RC channel 8 maximum. - -Maximum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 1500.0 | 2200.0 | | 2000 | us | - -### RC8_MIN (`FLOAT`) {#RC8_MIN} - -RC channel 8 minimum. - -Minimum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 1500.0 | | 1000 | us | - -### RC8_REV (`FLOAT`) {#RC8_REV} - -RC channel 8 reverse. - -Set to -1 to reverse channel. - -**Values:** - -- `-1.0`: Reverse -- `1.0`: Normal - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1.0 | 1.0 | | 1.0 | - -### RC8_TRIM (`FLOAT`) {#RC8_TRIM} - -RC channel 8 trim. - -Mid point value - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 2200.0 | | 1500 | us | - -### RC9_MAX (`FLOAT`) {#RC9_MAX} - -RC channel 9 maximum. - -Maximum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 1500.0 | 2200.0 | | 2000 | us | - -### RC9_MIN (`FLOAT`) {#RC9_MIN} - -RC channel 9 minimum. - -Minimum value for this channel. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 1500.0 | | 1000 | us | - -### RC9_REV (`FLOAT`) {#RC9_REV} - -RC channel 9 reverse. - -Set to -1 to reverse channel. - -**Values:** - -- `-1.0`: Reverse -- `1.0`: Normal - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | -1.0 | 1.0 | | 1.0 | - -### RC9_TRIM (`FLOAT`) {#RC9_TRIM} - -RC channel 9 trim. - -Mid point value - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 800.0 | 2200.0 | | 1500 | us | - -### RC_CHAN_CNT (`INT32`) {#RC_CHAN_CNT} - -RC channel count. - -This parameter is used by Ground Station software to save the number -of channels which were used during RC calibration. It is only meant -for ground station use. - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | - -### RC_FAILS_THR (`INT32`) {#RC_FAILS_THR} - -Failsafe channel PWM threshold. - -Use RC_MAP_FAILSAFE to specify which channel is used to indicate RC loss via this threshold. -By default this is the throttle channel. -Set to a PWM value slightly above the PWM value for the channel (e.g. throttle) in a failsafe event, -but below the minimum PWM value for the channel during normal operation. -Note: The default value of 0 disables the feature (it is below the expected range). - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 2200 | | 0 | us | - -### RC_MAP_AUX1 (`INT32`) {#RC_MAP_AUX1} - -AUX1 Passthrough RC channel. - -**Values:** - -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | - -### RC_MAP_AUX2 (`INT32`) {#RC_MAP_AUX2} - -AUX2 Passthrough RC channel. - -**Values:** - -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 - -| Reboot | minValue | maxValue | increment | default | unit | -| ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | - -### RC_MAP_AUX3 (`INT32`) {#RC_MAP_AUX3} - -AUX3 Passthrough RC channel. +### RC4_DZ (`FLOAT`) {#RC4_DZ} -**Values:** +RC channel 4 dead zone. -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +The +- range of this value around the trim value will be considered as zero. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | - -### RC_MAP_AUX4 (`INT32`) {#RC_MAP_AUX4} - -AUX4 Passthrough RC channel. - -**Values:** - -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +| | 0.0 | 100.0 | | 10.0 | us | + +### RC4_MAX (`FLOAT`) {#RC4_MAX} + +RC channel 4 maximum. + +Maximum value for this channel. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | - -### RC_MAP_AUX5 (`INT32`) {#RC_MAP_AUX5} +| | 1500.0 | 2200.0 | | 2000 | us | -AUX5 Passthrough RC channel. +### RC4_MIN (`FLOAT`) {#RC4_MIN} -**Values:** +RC channel 4 minimum. -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +Minimum value for this channel. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 800.0 | 1500.0 | | 1000 | us | -### RC_MAP_AUX6 (`INT32`) {#RC_MAP_AUX6} +### RC4_REV (`FLOAT`) {#RC4_REV} -AUX6 Passthrough RC channel. +RC channel 4 reverse. + +Set to -1 to reverse channel. **Values:** -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +- `-1.0`: Reverse +- `1.0`: Normal | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | -1.0 | 1.0 | | 1.0 | -### RC_MAP_ENG_MOT (`INT32`) {#RC_MAP_ENG_MOT} +### RC4_TRIM (`FLOAT`) {#RC4_TRIM} -RC channel to engage the main motor (for helicopters). +RC channel 4 trim. -**Values:** +Mid point value -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 800.0 | 2200.0 | | 1500 | us | + +### RC5_DZ (`FLOAT`) {#RC5_DZ} + +RC channel 5 dead zone. + +The +- range of this value around the trim value will be considered as zero. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 0.0 | 100.0 | | 10.0 | -### RC_MAP_FAILSAFE (`INT32`) {#RC_MAP_FAILSAFE} +### RC5_MAX (`FLOAT`) {#RC5_MAX} -Failsafe channel mapping. +RC channel 5 maximum. -Configures which RC channel is used by the receiver to indicate the signal was lost -(on receivers that use output a fixed signal value to report lost signal). -If set to 0, the channel mapped to throttle is used. -Use RC_FAILS_THR to set the threshold indicating lost signal. By default it's below -the expected range and hence disabled. +Maximum value for this channel. -**Values:** +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 1500.0 | 2200.0 | | 2000 | us | -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +### RC5_MIN (`FLOAT`) {#RC5_MIN} + +RC channel 5 minimum. + +Minimum value for this channel. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 800.0 | 1500.0 | | 1000 | us | -### RC_MAP_PARAM1 (`INT32`) {#RC_MAP_PARAM1} +### RC5_REV (`FLOAT`) {#RC5_REV} -PARAM1 tuning channel. +RC channel 5 reverse. -Can be used for parameter tuning with the RC. This one is further referenced as the 1st parameter channel. -Set to 0 to deactivate \* +Set to -1 to reverse channel. **Values:** -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +- `-1.0`: Reverse +- `1.0`: Normal | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | -1.0 | 1.0 | | 1.0 | -### RC_MAP_PARAM2 (`INT32`) {#RC_MAP_PARAM2} +### RC5_TRIM (`FLOAT`) {#RC5_TRIM} -PARAM2 tuning channel. +RC channel 5 trim. -Can be used for parameter tuning with the RC. This one is further referenced as the 2nd parameter channel. -Set to 0 to deactivate \* +Mid point value -**Values:** +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 800.0 | 2200.0 | | 1500 | us | -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +### RC6_DZ (`FLOAT`) {#RC6_DZ} + +RC channel 6 dead zone. + +The +- range of this value around the trim value will be considered as zero. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 0.0 | 100.0 | | 10.0 | -### RC_MAP_PARAM3 (`INT32`) {#RC_MAP_PARAM3} +### RC6_MAX (`FLOAT`) {#RC6_MAX} -PARAM3 tuning channel. +RC channel 6 maximum. -Can be used for parameter tuning with the RC. This one is further referenced as the 3th parameter channel. -Set to 0 to deactivate \* +Maximum value for this channel. -**Values:** +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 1500.0 | 2200.0 | | 2000 | us | -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +### RC6_MIN (`FLOAT`) {#RC6_MIN} + +RC channel 6 minimum. + +Minimum value for this channel. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 800.0 | 1500.0 | | 1000 | us | -### RC_MAP_PITCH (`INT32`) {#RC_MAP_PITCH} +### RC6_REV (`FLOAT`) {#RC6_REV} -Pitch control channel mapping. +RC channel 6 reverse. -The channel index (starting from 1 for channel 1) indicates -which channel should be used for reading pitch inputs from. -A value of zero indicates the switch is not assigned. +Set to -1 to reverse channel. **Values:** -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +- `-1.0`: Reverse +- `1.0`: Normal | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | -1.0 | 1.0 | | 1.0 | -### RC_MAP_ROLL (`INT32`) {#RC_MAP_ROLL} +### RC6_TRIM (`FLOAT`) {#RC6_TRIM} -Roll control channel mapping. +RC channel 6 trim. -The channel index (starting from 1 for channel 1) indicates -which channel should be used for reading roll inputs from. -A value of zero indicates the switch is not assigned. +Mid point value -**Values:** +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 800.0 | 2200.0 | | 1500 | us | -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +### RC7_DZ (`FLOAT`) {#RC7_DZ} + +RC channel 7 dead zone. + +The +- range of this value around the trim value will be considered as zero. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 0.0 | 100.0 | | 10.0 | -### RC_MAP_THROTTLE (`INT32`) {#RC_MAP_THROTTLE} +### RC7_MAX (`FLOAT`) {#RC7_MAX} -Throttle control channel mapping. +RC channel 7 maximum. -The channel index (starting from 1 for channel 1) indicates -which channel should be used for reading throttle inputs from. -A value of zero indicates the switch is not assigned. +Maximum value for this channel. -**Values:** +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 1500.0 | 2200.0 | | 2000 | us | -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +### RC7_MIN (`FLOAT`) {#RC7_MIN} + +RC channel 7 minimum. + +Minimum value for this channel. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 800.0 | 1500.0 | | 1000 | us | -### RC_MAP_YAW (`INT32`) {#RC_MAP_YAW} +### RC7_REV (`FLOAT`) {#RC7_REV} -Yaw control channel mapping. +RC channel 7 reverse. -The channel index (starting from 1 for channel 1) indicates -which channel should be used for reading yaw inputs from. -A value of zero indicates the switch is not assigned. +Set to -1 to reverse channel. **Values:** -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +- `-1.0`: Reverse +- `1.0`: Normal | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | -1.0 | 1.0 | | 1.0 | -### RC_RSSI_PWM_CHAN (`INT32`) {#RC_RSSI_PWM_CHAN} +### RC7_TRIM (`FLOAT`) {#RC7_TRIM} -PWM input channel that provides RSSI. +RC channel 7 trim. -0: do not read RSSI from input channel -1-18: read RSSI from specified input channel -Specify the range for RSSI input with RC_RSSI_PWM_MIN and RC_RSSI_PWM_MAX parameters. +Mid point value -**Values:** +| Reboot | minValue | maxValue | increment | default | unit | +| ------ | -------- | -------- | --------- | ------- | ---- | +| | 800.0 | 2200.0 | | 1500 | us | -- `0`: Unassigned -- `1`: Channel 1 -- `2`: Channel 2 -- `3`: Channel 3 -- `4`: Channel 4 -- `5`: Channel 5 -- `6`: Channel 6 -- `7`: Channel 7 -- `8`: Channel 8 -- `9`: Channel 9 -- `10`: Channel 10 -- `11`: Channel 11 -- `12`: Channel 12 -- `13`: Channel 13 -- `14`: Channel 14 -- `15`: Channel 15 -- `16`: Channel 16 -- `17`: Channel 17 -- `18`: Channel 18 +### RC8_DZ (`FLOAT`) {#RC8_DZ} + +RC channel 8 dead zone. + +The +- range of this value around the trim value will be considered as zero. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 18 | | 0 | +| | 0.0 | 100.0 | | 10.0 | -### RC_RSSI_PWM_MAX (`INT32`) {#RC_RSSI_PWM_MAX} +### RC8_MAX (`FLOAT`) {#RC8_MAX} -Max input value for RSSI reading. +RC channel 8 maximum. -Only used if RC_RSSI_PWM_CHAN > 0 +Maximum value for this channel. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 2000 | | 2000 | +| | 1500.0 | 2200.0 | | 2000 | us | -### RC_RSSI_PWM_MIN (`INT32`) {#RC_RSSI_PWM_MIN} +### RC8_MIN (`FLOAT`) {#RC8_MIN} -Min input value for RSSI reading. +RC channel 8 minimum. -Only used if RC_RSSI_PWM_CHAN > 0 +Minimum value for this channel. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | 0 | 2000 | | 1000 | +| | 800.0 | 1500.0 | | 1000 | us | -### TRIM_PITCH (`FLOAT`) {#TRIM_PITCH} +### RC8_REV (`FLOAT`) {#RC8_REV} -Pitch trim. +RC channel 8 reverse. + +Set to -1 to reverse channel. + +**Values:** -The trim value is the actuator control value the system needs -for straight and level flight. +- `-1.0`: Reverse +- `1.0`: Normal | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -0.5 | 0.5 | 0.01 | 0.0 | +| | -1.0 | 1.0 | | 1.0 | -### TRIM_ROLL (`FLOAT`) {#TRIM_ROLL} +### RC8_TRIM (`FLOAT`) {#RC8_TRIM} -Roll trim. +RC channel 8 trim. -The trim value is the actuator control value the system needs -for straight and level flight. +Mid point value | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -0.5 | 0.5 | 0.01 | 0.0 | +| | 800.0 | 2200.0 | | 1500 | us | -### TRIM_YAW (`FLOAT`) {#TRIM_YAW} +### RC9_DZ (`FLOAT`) {#RC9_DZ} -Yaw trim. +RC channel 9 dead zone. -The trim value is the actuator control value the system needs -for straight and level flight. +The +- range of this value around the trim value will be considered as zero. | Reboot | minValue | maxValue | increment | default | unit | | ------ | -------- | -------- | --------- | ------- | ---- | -| | -0.5 | 0.5 | 0.01 | 0.0 | - -## Radio Switches +| | 0.0 | 100.0 | | 0.0 | -### RC_ARMSWITCH_TH (`FLOAT`) {#RC_ARMSWITCH_TH} +### RC9_MAX (`FLOAT`) {#RC9_MAX} -Threshold for the arm switch. +RC channel 9 maximum. -0-1 indicate where in the full channel range the threshold sits -0 : min -1 : max -sign indicates polarity of comparison -positive : true when channel>th -negative : true when channel
A simulator implemented in C++ as a PX4 module directly in the Firmware [code](https://github.com/PX4/PX4-Autopilot/tree/main/src/modules/simulation/simulator_sih). It can be ran in SITL directly on the computer or as an alternative to HITL offering a hard real-time simulation directly on the hardware autopilot.
Supported Vehicles: Quad, Hexa, Plane, Tailsitter, Standard VTOL, Ackermann Rover
| -| [FlightGear](../sim_flightgear/index.md) |A simulator that provides physically and visually realistic simulations. In particular it can simulate many weather conditions, including thunderstorms, snow, rain and hail, and can also simulate thermals and different types of atmospheric flows. [Multi-vehicle simulation](../sim_flightgear/multi_vehicle.md) is also supported.
Supported Vehicles: Plane, Autogyro, Rover
| -| [JMAVSim](../sim_jmavsim/index.md) |A simple multirotor/quad simulator. This was previously part of the PX4 development toolchain but was removed in favour of [Gazebo](../sim_gazebo_gz/index.md).
Supported Vehicles: Quad
| -| [JSBSim](../sim_jsbsim/index.md) |A simulator that provides advanced flight dynamics models. This can be used to model realistic flight dynamics based on wind tunnel data.
Supported Vehicles: Plane, Quad, Hex
| -| [AirSim](../sim_airsim/index.md) |A cross platform simulator that provides physically and visually realistic simulations. This simulator is resource intensive, and requires a significantly more powerful computer than the other simulators described here.
Supported Vehicles: Iris (MultiRotor model and a configuration for PX4 QuadRotor in the X configuration).
| +| Simulator | Description | +| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| [Simulation-In-Hardware](../sim_sih/index.md) (SIH) |A simulator implemented in C++ as a PX4 module directly in the Firmware [code](https://github.com/PX4/PX4-Autopilot/tree/main/src/modules/simulation/simulator_sih). It can be ran in SITL directly on the computer or as an alternative to HITL offering a hard real-time simulation directly on the hardware autopilot.
Supported Vehicles: Quad, Hexa, Plane, Tailsitter, Standard VTOL, Ackermann Rover
| +| [FlightGear](../sim_flightgear/index.md) |A simulator that provides physically and visually realistic simulations. In particular it can simulate many weather conditions, including thunderstorms, snow, rain and hail, and can also simulate thermals and different types of atmospheric flows. [Multi-vehicle simulation](../sim_flightgear/multi_vehicle.md) is also supported.
Supported Vehicles: Plane, Autogyro, Rover
| +| [JMAVSim](../sim_jmavsim/index.md) |A simple multirotor/quad simulator. This was previously part of the PX4 development toolchain but was removed in favour of [Gazebo](../sim_gazebo_gz/index.md).
Supported Vehicles: Quad
| +| [JSBSim](../sim_jsbsim/index.md) |A simulator that provides advanced flight dynamics models. This can be used to model realistic flight dynamics based on wind tunnel data.
Supported Vehicles: Plane, Quad, Hex
| +| [AirSim](../sim_airsim/index.md) |A cross platform simulator that provides physically and visually realistic simulations. This simulator is resource intensive, and requires a significantly more powerful computer than the other simulators described here.
Supported Vehicles: Iris (MultiRotor model and a configuration for PX4 QuadRotor in the X configuration).
| diff --git a/docs/en/smart_batteries/index.md b/docs/en/smart_batteries/index.md index 6ddc0328427f..805ad60619b4 100644 --- a/docs/en/smart_batteries/index.md +++ b/docs/en/smart_batteries/index.md @@ -5,7 +5,8 @@ This allows for more more reliable flight planning notification of failure condi The information may include some of: remaining charge, time-to-empty (estimated), cell voltages (rated max/min, current voltage, etc.), temperature, currents, fault information, battery vendor, chemistry, etc. PX4 supports (at least) following smart batteries: -* [Rotoye Batmon](../smart_batteries/rotoye_batmon.md) + +- [Rotoye Batmon](../smart_batteries/rotoye_batmon.md) ### Further Information diff --git a/docs/en/smart_batteries/rotoye_batmon.md b/docs/en/smart_batteries/rotoye_batmon.md index 64120b5da859..a50eba58e28b 100644 --- a/docs/en/smart_batteries/rotoye_batmon.md +++ b/docs/en/smart_batteries/rotoye_batmon.md @@ -7,12 +7,10 @@ It can be purchased as a standalone unit or as part of a factory-assembled smart  - ## Where to Buy [Rotoye Store](https://rotoye.com/batmon/): Batmon kits, custom smart-batteries, and accessories - ## Wiring/Connections The Rotoye Batmon system uses an XT-90 battery connector with I2C pins, and an opti-isolator board to transmit data. @@ -21,7 +19,6 @@ The Rotoye Batmon system uses an XT-90 battery connector with I2C pins, and an o More details can be found [here](https://github.com/rotoye/batmon_reader) - ## Software Setup ### Build PX4 Firmware @@ -31,7 +28,7 @@ More details can be found [here](https://github.com/rotoye/batmon_reader) git clone https://github.com/rotoye/PX4-Autopilot.git cd PX4-Autopilot ``` -1. Checkout the *batmon_4.03* branch +1. Checkout the _batmon_4.03_ branch ```sh git fetch origin batmon_4.03 git checkout batmon_4.03 @@ -40,16 +37,17 @@ More details can be found [here](https://github.com/rotoye/batmon_reader) ### Configure Parameters -In *QGroundControl*: +In _QGroundControl_: + 1. Set the following [parameters](../advanced_config/parameters.md): - `BATx_SOURCE` to `External`, - - `SENS_EN_BAT` to `true`, + - `SENS_EN_BAT` to `true`, - `BAT_SMBUS_MODEL` to `3:Rotoye` 1. Open the [MAVLink Console](https://docs.qgroundcontrol.com/master/en/qgc-user-guide/analyze_view/mavlink_console.html) 1. Start the [batt_smbus driver](../modules/modules_driver.md) in the console. For example, to run two BatMons on the same bus: - ```sh - batt_smbus start -X -b 1 -a 11 # External bus 1, address 0x0b + ```sh + batt_smbus start -X -b 1 -a 11 # External bus 1, address 0x0b batt_smbus start -X -b 1 -a 12 # External bus 1, address 0x0c ``` diff --git a/docs/en/test_and_ci/index.md b/docs/en/test_and_ci/index.md index a906ed8f465b..dbb1aa7c11f3 100644 --- a/docs/en/test_and_ci/index.md +++ b/docs/en/test_and_ci/index.md @@ -9,8 +9,8 @@ Test topics include: - [Unit Tests](../test_and_ci/unit_tests.md) - [Continuous Integration (CI)](../test_and_ci/continous_integration.md) - [Integration Testing](../test_and_ci/integration_testing.md) - - [MAVSDK Integration Testing](../test_and_ci/integration_testing_mavsdk.md) - - [PX4 ROS2 Interface Library Integration Testing](../test_and_ci/integration_testing_px4_ros2_interface.md) - - [ROS 1 Integration Testing](../test_and_ci/integration_testing_ros1_mavros.md) (Deprecated) + - [MAVSDK Integration Testing](../test_and_ci/integration_testing_mavsdk.md) + - [PX4 ROS2 Interface Library Integration Testing](../test_and_ci/integration_testing_px4_ros2_interface.md) + - [ROS 1 Integration Testing](../test_and_ci/integration_testing_ros1_mavros.md) (Deprecated) - [Docker](../test_and_ci/docker.md) - [Maintenance](../test_and_ci/maintenance.md) diff --git a/docs/en/test_cards/mc_04_failsafe_testing.md b/docs/en/test_cards/mc_04_failsafe_testing.md index 4042e094d22b..3947be6b2ef1 100644 --- a/docs/en/test_cards/mc_04_failsafe_testing.md +++ b/docs/en/test_cards/mc_04_failsafe_testing.md @@ -9,10 +9,10 @@ Test RC loss, data link loss, and low battery failsafes. - Verify RC Loss action is Return to Land - Verify Data Link Loss action is Return to Land and the timeout is 10 seconds - Verify Battery failsafe - - Action is Return to Land - - Battery Warn Level is 25% - - Battery Failsafe Level is 20% - - Battery Emergency Level is 15% + - Action is Return to Land + - Battery Warn Level is 25% + - Battery Failsafe Level is 20% + - Battery Emergency Level is 15% ## Flight Tests @@ -28,7 +28,6 @@ Test RC loss, data link loss, and low battery failsafes. ❏ Disconnect telemetry, vehicle should return to home position after 10 seconds, wait for the descent and reconnect the telemetry radio - ❏ Battery Failsafe ❏ Confirm the warning message is received in QGC diff --git a/docs/en/uart/user_configurable_serial_driver.md b/docs/en/uart/user_configurable_serial_driver.md index 9fbe168a6666..3809ad25a6e7 100644 --- a/docs/en/uart/user_configurable_serial_driver.md +++ b/docs/en/uart/user_configurable_serial_driver.md @@ -24,7 +24,6 @@ where, To make driver configurable: 1. Create a YAML module configuration file: - - Add a new file in the driver's source directory named **module.yaml** - Insert the following text and adjust as needed: diff --git a/docs/package-lock.json b/docs/package-lock.json deleted file mode 100644 index 2a87516fb02e..000000000000 --- a/docs/package-lock.json +++ /dev/null @@ -1,3297 +0,0 @@ -{ - "name": "px4_user_guide", - "version": "1.0.1", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "px4_user_guide", - "version": "1.0.1", - "license": "CC-BY-4.0", - "dependencies": { - "@red-asuka/vitepress-plugin-tabs": "0.0.4", - "lite-youtube-embed": "^0.3.3", - "markdown-it-mathjax3": "^4.3.2", - "medium-zoom": "^1.1.0", - "open-editor": "^5.0.0", - "vitepress": "^1.6.3", - "vue3-tabs-component": "^1.3.7" - } - }, - "node_modules/@algolia/autocomplete-core": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz", - "integrity": "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==", - "license": "MIT", - "dependencies": { - "@algolia/autocomplete-plugin-algolia-insights": "1.17.7", - "@algolia/autocomplete-shared": "1.17.7" - } - }, - "node_modules/@algolia/autocomplete-plugin-algolia-insights": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz", - "integrity": "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==", - "license": "MIT", - "dependencies": { - "@algolia/autocomplete-shared": "1.17.7" - }, - "peerDependencies": { - "search-insights": ">= 1 < 3" - } - }, - "node_modules/@algolia/autocomplete-preset-algolia": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz", - "integrity": "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==", - "license": "MIT", - "dependencies": { - "@algolia/autocomplete-shared": "1.17.7" - }, - "peerDependencies": { - "@algolia/client-search": ">= 4.9.1 < 6", - "algoliasearch": ">= 4.9.1 < 6" - } - }, - "node_modules/@algolia/autocomplete-shared": { - "version": "1.17.7", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz", - "integrity": "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==", - "license": "MIT", - "peerDependencies": { - "@algolia/client-search": ">= 4.9.1 < 6", - "algoliasearch": ">= 4.9.1 < 6" - } - }, - "node_modules/@algolia/client-abtesting": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.32.0.tgz", - "integrity": "sha512-HG/6Eib6DnJYm/B2ijWFXr4txca/YOuA4K7AsEU0JBrOZSB+RU7oeDyNBPi3c0v0UDDqlkBqM3vBU/auwZlglA==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/client-analytics": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.32.0.tgz", - "integrity": "sha512-8Y9MLU72WFQOW3HArYv16+Wvm6eGmsqbxxM1qxtm0hvSASJbxCm+zQAZe5stqysTlcWo4BJ82KEH1PfgHbJAmQ==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/client-common": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.32.0.tgz", - "integrity": "sha512-w8L+rgyXMCPBKmEdOT+RfgMrF0mT6HK60vPYWLz8DBs/P7yFdGo7urn99XCJvVLMSKXrIbZ2FMZ/i50nZTXnuQ==", - "license": "MIT", - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/client-insights": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.32.0.tgz", - "integrity": "sha512-AdWfynhUeX7jz/LTiFU3wwzJembTbdLkQIOLs4n7PyBuxZ3jz4azV1CWbIP8AjUOFmul6uXbmYza+KqyS5CzOA==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/client-personalization": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.32.0.tgz", - "integrity": "sha512-bTupJY4xzGZYI4cEQcPlSjjIEzMvv80h7zXGrXY1Y0KC/n/SLiMv84v7Uy+B6AG1Kiy9FQm2ADChBLo1uEhGtQ==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/client-query-suggestions": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.32.0.tgz", - "integrity": "sha512-if+YTJw1G3nDKL2omSBjQltCHUQzbaHADkcPQrGFnIGhVyHU3Dzq4g46uEv8mrL5sxL8FjiS9LvekeUlL2NRqw==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/client-search": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.32.0.tgz", - "integrity": "sha512-kmK5nVkKb4DSUgwbveMKe4X3xHdMsPsOVJeEzBvFJ+oS7CkBPmpfHAEq+CcmiPJs20YMv6yVtUT9yPWL5WgAhg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/ingestion": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.32.0.tgz", - "integrity": "sha512-PZTqjJbx+fmPuT2ud1n4vYDSF1yrT//vOGI9HNYKNA0PM0xGUBWigf5gRivHsXa3oBnUlTyHV9j7Kqx5BHbVHQ==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/monitoring": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.32.0.tgz", - "integrity": "sha512-kYYoOGjvNQAmHDS1v5sBj+0uEL9RzYqH/TAdq8wmcV+/22weKt/fjh+6LfiqkS1SCZFYYrwGnirrUhUM36lBIQ==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/recommend": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.32.0.tgz", - "integrity": "sha512-jyIBLdskjPAL7T1g57UMfUNx+PzvYbxKslwRUKBrBA6sNEsYCFdxJAtZSLUMmw6MC98RDt4ksmEl5zVMT5bsuw==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/requester-browser-xhr": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.32.0.tgz", - "integrity": "sha512-eDp14z92Gt6JlFgiexImcWWH+Lk07s/FtxcoDaGrE4UVBgpwqOO6AfQM6dXh1pvHxlDFbMJihHc/vj3gBhPjqQ==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/requester-fetch": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.32.0.tgz", - "integrity": "sha512-rnWVglh/K75hnaLbwSc2t7gCkbq1ldbPgeIKDUiEJxZ4mlguFgcltWjzpDQ/t1LQgxk9HdIFcQfM17Hid3aQ6Q==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@algolia/requester-node-http": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.32.0.tgz", - "integrity": "sha512-LbzQ04+VLkzXY4LuOzgyjqEv/46Gwrk55PldaglMJ4i4eDXSRXGKkwJpXFwsoU+c1HMQlHIyjJBhrfsfdyRmyQ==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", - "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", - "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", - "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", - "license": "MIT", - "dependencies": { - "@babel/types": "^7.28.0" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/types": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.0.tgz", - "integrity": "sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==", - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.27.1", - "@babel/helper-validator-identifier": "^7.27.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@docsearch/css": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.8.2.tgz", - "integrity": "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==", - "license": "MIT" - }, - "node_modules/@docsearch/js": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.8.2.tgz", - "integrity": "sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==", - "license": "MIT", - "dependencies": { - "@docsearch/react": "3.8.2", - "preact": "^10.0.0" - } - }, - "node_modules/@docsearch/react": { - "version": "3.8.2", - "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.8.2.tgz", - "integrity": "sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==", - "license": "MIT", - "dependencies": { - "@algolia/autocomplete-core": "1.17.7", - "@algolia/autocomplete-preset-algolia": "1.17.7", - "@docsearch/css": "3.8.2", - "algoliasearch": "^5.14.2" - }, - "peerDependencies": { - "@types/react": ">= 16.8.0 < 19.0.0", - "react": ">= 16.8.0 < 19.0.0", - "react-dom": ">= 16.8.0 < 19.0.0", - "search-insights": ">= 1 < 3" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "react": { - "optional": true - }, - "react-dom": { - "optional": true - }, - "search-insights": { - "optional": true - } - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@iconify-json/simple-icons": { - "version": "1.2.42", - "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.42.tgz", - "integrity": "sha512-G/EED0hUV1wMNUsWaFdQYLibm6SO7rP2GZP1+CvhszB5WAFYYibD3zoWp3X96xSIWpYQFvccvE17ewpd0Q1hWQ==", - "license": "CC0-1.0", - "dependencies": { - "@iconify/types": "*" - } - }, - "node_modules/@iconify/types": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", - "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", - "license": "MIT" - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", - "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", - "license": "MIT" - }, - "node_modules/@red-asuka/vitepress-plugin-tabs": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/@red-asuka/vitepress-plugin-tabs/-/vitepress-plugin-tabs-0.0.4.tgz", - "integrity": "sha512-fcZAR281xnPiTm2ha8Wogg3PyFG5ZdJoeCGFeg7lOif53wXxo1obJQS98A8n/ujL//fFok/sDr1659Hbx6MD0Q==", - "license": "MIT", - "dependencies": { - "markdown-it": "^13.0.1", - "markdown-it-container": "^3.0.0" - } - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.2.tgz", - "integrity": "sha512-g0dF8P1e2QYPOj1gu7s/3LVP6kze9A7m6x0BZ9iTdXK8N5c2V7cpBKHV3/9A4Zd8xxavdhK0t4PnqjkqVmUc9Q==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.2.tgz", - "integrity": "sha512-Yt5MKrOosSbSaAK5Y4J+vSiID57sOvpBNBR6K7xAaQvk3MkcNVV0f9fE20T+41WYN8hDn6SGFlFrKudtx4EoxA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.2.tgz", - "integrity": "sha512-EsnFot9ZieM35YNA26nhbLTJBHD0jTwWpPwmRVDzjylQT6gkar+zenfb8mHxWpRrbn+WytRRjE0WKsfaxBkVUA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.2.tgz", - "integrity": "sha512-dv/t1t1RkCvJdWWxQ2lWOO+b7cMsVw5YFaS04oHpZRWehI1h0fV1gF4wgGCTyQHHjJDfbNpwOi6PXEafRBBezw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.2.tgz", - "integrity": "sha512-W4tt4BLorKND4qeHElxDoim0+BsprFTwb+vriVQnFFtT/P6v/xO5I99xvYnVzKWrK6j7Hb0yp3x7V5LUbaeOMg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.2.tgz", - "integrity": "sha512-tdT1PHopokkuBVyHjvYehnIe20fxibxFCEhQP/96MDSOcyjM/shlTkZZLOufV3qO6/FQOSiJTBebhVc12JyPTA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.2.tgz", - "integrity": "sha512-+xmiDGGaSfIIOXMzkhJ++Oa0Gwvl9oXUeIiwarsdRXSe27HUIvjbSIpPxvnNsRebsNdUo7uAiQVgBD1hVriwSQ==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.2.tgz", - "integrity": "sha512-bDHvhzOfORk3wt8yxIra8N4k/N0MnKInCW5OGZaeDYa/hMrdPaJzo7CSkjKZqX4JFUWjUGm88lI6QJLCM7lDrA==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.2.tgz", - "integrity": "sha512-NMsDEsDiYghTbeZWEGnNi4F0hSbGnsuOG+VnNvxkKg0IGDvFh7UVpM/14mnMwxRxUf9AdAVJgHPvKXf6FpMB7A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.2.tgz", - "integrity": "sha512-lb5bxXnxXglVq+7imxykIp5xMq+idehfl+wOgiiix0191av84OqbjUED+PRC5OA8eFJYj5xAGcpAZ0pF2MnW+A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loongarch64-gnu": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.2.tgz", - "integrity": "sha512-Yl5Rdpf9pIc4GW1PmkUGHdMtbx0fBLE1//SxDmuf3X0dUC57+zMepow2LK0V21661cjXdTn8hO2tXDdAWAqE5g==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.2.tgz", - "integrity": "sha512-03vUDH+w55s680YYryyr78jsO1RWU9ocRMaeV2vMniJJW/6HhoTBwyyiiTPVHNWLnhsnwcQ0oH3S9JSBEKuyqw==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.2.tgz", - "integrity": "sha512-iYtAqBg5eEMG4dEfVlkqo05xMOk6y/JXIToRca2bAWuqjrJYJlx/I7+Z+4hSrsWU8GdJDFPL4ktV3dy4yBSrzg==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.2.tgz", - "integrity": "sha512-e6vEbgaaqz2yEHqtkPXa28fFuBGmUJ0N2dOJK8YUfijejInt9gfCSA7YDdJ4nYlv67JfP3+PSWFX4IVw/xRIPg==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.2.tgz", - "integrity": "sha512-evFOtkmVdY3udE+0QKrV5wBx7bKI0iHz5yEVx5WqDJkxp9YQefy4Mpx3RajIVcM6o7jxTvVd/qpC1IXUhGc1Mw==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.2.tgz", - "integrity": "sha512-/bXb0bEsWMyEkIsUL2Yt5nFB5naLAwyOWMEviQfQY1x3l5WsLKgvZf66TM7UTfED6erckUVUJQ/jJ1FSpm3pRQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.2.tgz", - "integrity": "sha512-3D3OB1vSSBXmkGEZR27uiMRNiwN08/RVAcBKwhUYPaiZ8bcvdeEwWPvbnXvvXHY+A/7xluzcN+kaiOFNiOZwWg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.2.tgz", - "integrity": "sha512-VfU0fsMK+rwdK8mwODqYeM2hDrF2WiHaSmCBrS7gColkQft95/8tphyzv2EupVxn3iE0FI78wzffoULH1G+dkw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.2.tgz", - "integrity": "sha512-+qMUrkbUurpE6DVRjiJCNGZBGo9xM4Y0FXU5cjgudWqIBWbcLkjE3XprJUsOFgC6xjBClwVa9k6O3A7K3vxb5Q==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.2.tgz", - "integrity": "sha512-3+QZROYfJ25PDcxFF66UEk8jGWigHJeecZILvkPkyQN7oc5BvFo4YEXFkOs154j3FTMp9mn9Ky8RCOwastduEA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@sec-ant/readable-stream": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", - "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", - "license": "MIT" - }, - "node_modules/@shikijs/core": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@shikijs/core/-/core-2.5.0.tgz", - "integrity": "sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==", - "license": "MIT", - "dependencies": { - "@shikijs/engine-javascript": "2.5.0", - "@shikijs/engine-oniguruma": "2.5.0", - "@shikijs/types": "2.5.0", - "@shikijs/vscode-textmate": "^10.0.2", - "@types/hast": "^3.0.4", - "hast-util-to-html": "^9.0.4" - } - }, - "node_modules/@shikijs/engine-javascript": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@shikijs/engine-javascript/-/engine-javascript-2.5.0.tgz", - "integrity": "sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==", - "license": "MIT", - "dependencies": { - "@shikijs/types": "2.5.0", - "@shikijs/vscode-textmate": "^10.0.2", - "oniguruma-to-es": "^3.1.0" - } - }, - "node_modules/@shikijs/engine-oniguruma": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-2.5.0.tgz", - "integrity": "sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==", - "license": "MIT", - "dependencies": { - "@shikijs/types": "2.5.0", - "@shikijs/vscode-textmate": "^10.0.2" - } - }, - "node_modules/@shikijs/langs": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@shikijs/langs/-/langs-2.5.0.tgz", - "integrity": "sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==", - "license": "MIT", - "dependencies": { - "@shikijs/types": "2.5.0" - } - }, - "node_modules/@shikijs/themes": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@shikijs/themes/-/themes-2.5.0.tgz", - "integrity": "sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==", - "license": "MIT", - "dependencies": { - "@shikijs/types": "2.5.0" - } - }, - "node_modules/@shikijs/transformers": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@shikijs/transformers/-/transformers-2.5.0.tgz", - "integrity": "sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==", - "license": "MIT", - "dependencies": { - "@shikijs/core": "2.5.0", - "@shikijs/types": "2.5.0" - } - }, - "node_modules/@shikijs/types": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@shikijs/types/-/types-2.5.0.tgz", - "integrity": "sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==", - "license": "MIT", - "dependencies": { - "@shikijs/vscode-textmate": "^10.0.2", - "@types/hast": "^3.0.4" - } - }, - "node_modules/@shikijs/vscode-textmate": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", - "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", - "license": "MIT" - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", - "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@types/estree": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", - "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", - "license": "MIT" - }, - "node_modules/@types/hast": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", - "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", - "license": "MIT", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/@types/linkify-it": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz", - "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", - "license": "MIT" - }, - "node_modules/@types/markdown-it": { - "version": "14.1.2", - "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz", - "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", - "license": "MIT", - "dependencies": { - "@types/linkify-it": "^5", - "@types/mdurl": "^2" - } - }, - "node_modules/@types/mdast": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", - "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "license": "MIT", - "dependencies": { - "@types/unist": "*" - } - }, - "node_modules/@types/mdurl": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz", - "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", - "license": "MIT" - }, - "node_modules/@types/unist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", - "license": "MIT" - }, - "node_modules/@types/web-bluetooth": { - "version": "0.0.21", - "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz", - "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==", - "license": "MIT" - }, - "node_modules/@ungap/structured-clone": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", - "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", - "license": "ISC" - }, - "node_modules/@vitejs/plugin-vue": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz", - "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==", - "license": "MIT", - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "peerDependencies": { - "vite": "^5.0.0 || ^6.0.0", - "vue": "^3.2.25" - } - }, - "node_modules/@vue/compiler-core": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.17.tgz", - "integrity": "sha512-Xe+AittLbAyV0pabcN7cP7/BenRBNcteM4aSDCtRvGw0d9OL+HG1u/XHLY/kt1q4fyMeZYXyIYrsHuPSiDPosA==", - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.27.5", - "@vue/shared": "3.5.17", - "entities": "^4.5.0", - "estree-walker": "^2.0.2", - "source-map-js": "^1.2.1" - } - }, - "node_modules/@vue/compiler-core/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/@vue/compiler-dom": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.17.tgz", - "integrity": "sha512-+2UgfLKoaNLhgfhV5Ihnk6wB4ljyW1/7wUIog2puUqajiC29Lp5R/IKDdkebh9jTbTogTbsgB+OY9cEWzG95JQ==", - "license": "MIT", - "dependencies": { - "@vue/compiler-core": "3.5.17", - "@vue/shared": "3.5.17" - } - }, - "node_modules/@vue/compiler-sfc": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.17.tgz", - "integrity": "sha512-rQQxbRJMgTqwRugtjw0cnyQv9cP4/4BxWfTdRBkqsTfLOHWykLzbOc3C4GGzAmdMDxhzU/1Ija5bTjMVrddqww==", - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.27.5", - "@vue/compiler-core": "3.5.17", - "@vue/compiler-dom": "3.5.17", - "@vue/compiler-ssr": "3.5.17", - "@vue/shared": "3.5.17", - "estree-walker": "^2.0.2", - "magic-string": "^0.30.17", - "postcss": "^8.5.6", - "source-map-js": "^1.2.1" - } - }, - "node_modules/@vue/compiler-ssr": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.17.tgz", - "integrity": "sha512-hkDbA0Q20ZzGgpj5uZjb9rBzQtIHLS78mMilwrlpWk2Ep37DYntUz0PonQ6kr113vfOEdM+zTBuJDaceNIW0tQ==", - "license": "MIT", - "dependencies": { - "@vue/compiler-dom": "3.5.17", - "@vue/shared": "3.5.17" - } - }, - "node_modules/@vue/devtools-api": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.7.tgz", - "integrity": "sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==", - "license": "MIT", - "dependencies": { - "@vue/devtools-kit": "^7.7.7" - } - }, - "node_modules/@vue/devtools-kit": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.7.tgz", - "integrity": "sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==", - "license": "MIT", - "dependencies": { - "@vue/devtools-shared": "^7.7.7", - "birpc": "^2.3.0", - "hookable": "^5.5.3", - "mitt": "^3.0.1", - "perfect-debounce": "^1.0.0", - "speakingurl": "^14.0.1", - "superjson": "^2.2.2" - } - }, - "node_modules/@vue/devtools-shared": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.7.tgz", - "integrity": "sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==", - "license": "MIT", - "dependencies": { - "rfdc": "^1.4.1" - } - }, - "node_modules/@vue/reactivity": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.17.tgz", - "integrity": "sha512-l/rmw2STIscWi7SNJp708FK4Kofs97zc/5aEPQh4bOsReD/8ICuBcEmS7KGwDj5ODQLYWVN2lNibKJL1z5b+Lw==", - "license": "MIT", - "dependencies": { - "@vue/shared": "3.5.17" - } - }, - "node_modules/@vue/runtime-core": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.17.tgz", - "integrity": "sha512-QQLXa20dHg1R0ri4bjKeGFKEkJA7MMBxrKo2G+gJikmumRS7PTD4BOU9FKrDQWMKowz7frJJGqBffYMgQYS96Q==", - "license": "MIT", - "dependencies": { - "@vue/reactivity": "3.5.17", - "@vue/shared": "3.5.17" - } - }, - "node_modules/@vue/runtime-dom": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.17.tgz", - "integrity": "sha512-8El0M60TcwZ1QMz4/os2MdlQECgGoVHPuLnQBU3m9h3gdNRW9xRmI8iLS4t/22OQlOE6aJvNNlBiCzPHur4H9g==", - "license": "MIT", - "dependencies": { - "@vue/reactivity": "3.5.17", - "@vue/runtime-core": "3.5.17", - "@vue/shared": "3.5.17", - "csstype": "^3.1.3" - } - }, - "node_modules/@vue/server-renderer": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.17.tgz", - "integrity": "sha512-BOHhm8HalujY6lmC3DbqF6uXN/K00uWiEeF22LfEsm9Q93XeJ/plHTepGwf6tqFcF7GA5oGSSAAUock3VvzaCA==", - "license": "MIT", - "dependencies": { - "@vue/compiler-ssr": "3.5.17", - "@vue/shared": "3.5.17" - }, - "peerDependencies": { - "vue": "3.5.17" - } - }, - "node_modules/@vue/shared": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.17.tgz", - "integrity": "sha512-CabR+UN630VnsJO/jHWYBC1YVXyMq94KKp6iF5MQgZJs5I8cmjw6oVMO1oDbtBkENSHSSn/UadWlW/OAgdmKrg==", - "license": "MIT" - }, - "node_modules/@vueuse/core": { - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-12.8.2.tgz", - "integrity": "sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==", - "license": "MIT", - "dependencies": { - "@types/web-bluetooth": "^0.0.21", - "@vueuse/metadata": "12.8.2", - "@vueuse/shared": "12.8.2", - "vue": "^3.5.13" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/@vueuse/integrations": { - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-12.8.2.tgz", - "integrity": "sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==", - "license": "MIT", - "dependencies": { - "@vueuse/core": "12.8.2", - "@vueuse/shared": "12.8.2", - "vue": "^3.5.13" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "async-validator": "^4", - "axios": "^1", - "change-case": "^5", - "drauu": "^0.4", - "focus-trap": "^7", - "fuse.js": "^7", - "idb-keyval": "^6", - "jwt-decode": "^4", - "nprogress": "^0.2", - "qrcode": "^1.5", - "sortablejs": "^1", - "universal-cookie": "^7" - }, - "peerDependenciesMeta": { - "async-validator": { - "optional": true - }, - "axios": { - "optional": true - }, - "change-case": { - "optional": true - }, - "drauu": { - "optional": true - }, - "focus-trap": { - "optional": true - }, - "fuse.js": { - "optional": true - }, - "idb-keyval": { - "optional": true - }, - "jwt-decode": { - "optional": true - }, - "nprogress": { - "optional": true - }, - "qrcode": { - "optional": true - }, - "sortablejs": { - "optional": true - }, - "universal-cookie": { - "optional": true - } - } - }, - "node_modules/@vueuse/metadata": { - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-12.8.2.tgz", - "integrity": "sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/@vueuse/shared": { - "version": "12.8.2", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-12.8.2.tgz", - "integrity": "sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==", - "license": "MIT", - "dependencies": { - "vue": "^3.5.13" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/@xmldom/xmldom": { - "version": "0.9.8", - "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.8.tgz", - "integrity": "sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==", - "license": "MIT", - "engines": { - "node": ">=14.6" - } - }, - "node_modules/algoliasearch": { - "version": "5.32.0", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.32.0.tgz", - "integrity": "sha512-84xBncKNPBK8Ae89F65+SyVcOihrIbm/3N7to+GpRBHEUXGjA3ydWTMpcRW6jmFzkBQ/eqYy/y+J+NBpJWYjBg==", - "license": "MIT", - "peer": true, - "dependencies": { - "@algolia/client-abtesting": "5.32.0", - "@algolia/client-analytics": "5.32.0", - "@algolia/client-common": "5.32.0", - "@algolia/client-insights": "5.32.0", - "@algolia/client-personalization": "5.32.0", - "@algolia/client-query-suggestions": "5.32.0", - "@algolia/client-search": "5.32.0", - "@algolia/ingestion": "1.32.0", - "@algolia/monitoring": "1.32.0", - "@algolia/recommend": "5.32.0", - "@algolia/requester-browser-xhr": "5.32.0", - "@algolia/requester-fetch": "5.32.0", - "@algolia/requester-node-http": "5.32.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "license": "Python-2.0" - }, - "node_modules/birpc": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/birpc/-/birpc-2.4.0.tgz", - "integrity": "sha512-5IdNxTyhXHv2UlgnPHQ0h+5ypVmkrYHzL8QT+DwFZ//2N/oNV8Ch+BCRmTJ3x6/z9Axo/cXYBc9eprsUVK/Jsg==", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/antfu" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "license": "ISC" - }, - "node_modules/bundle-name": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", - "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", - "license": "MIT", - "dependencies": { - "run-applescript": "^7.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/cheerio": { - "version": "1.0.0-rc.10", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.10.tgz", - "integrity": "sha512-g0J0q/O6mW8z5zxQ3A8E8J1hUgp4SMOvEoW/x84OwyHKe/Zccz83PVT4y5Crcr530FV6NgmKI1qvGTKVl9XXVw==", - "license": "MIT", - "dependencies": { - "cheerio-select": "^1.5.0", - "dom-serializer": "^1.3.2", - "domhandler": "^4.2.0", - "htmlparser2": "^6.1.0", - "parse5": "^6.0.1", - "parse5-htmlparser2-tree-adapter": "^6.0.1", - "tslib": "^2.2.0" - }, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" - } - }, - "node_modules/cheerio-select": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-1.6.0.tgz", - "integrity": "sha512-eq0GdBvxVFbqWgmCm7M3XGs1I8oLy/nExUnh6oLqmBditPO9AqQJrkslDpMun/hZ0yyTs8L0m85OHp4ho6Qm9g==", - "license": "BSD-2-Clause", - "dependencies": { - "css-select": "^4.3.0", - "css-what": "^6.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.3.1", - "domutils": "^2.8.0" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/copy-anything": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", - "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", - "license": "MIT", - "dependencies": { - "is-what": "^4.1.8" - }, - "engines": { - "node": ">=12.13" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-what": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", - "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "license": "MIT" - }, - "node_modules/default-browser": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", - "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", - "license": "MIT", - "dependencies": { - "bundle-name": "^4.1.0", - "default-browser-id": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser-id": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", - "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/devlop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", - "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", - "license": "MIT", - "dependencies": { - "dequal": "^2.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/emoji-regex-xs": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", - "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", - "license": "MIT" - }, - "node_modules/entities": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", - "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/env-editor": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/env-editor/-/env-editor-1.1.0.tgz", - "integrity": "sha512-7AXskzN6T7Q9TFcKAGJprUbpQa4i1VsAetO9rdBqbGMGlragTziBgWt4pVYJMBWHQlLoX0buy6WFikzPH4Qjpw==", - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" - } - }, - "node_modules/escape-goat": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-3.0.0.tgz", - "integrity": "sha512-w3PwNZJwRxlp47QGzhuEBldEqVHHhh8/tIPcl6ecf2Bou99cdAt0knihBV0Ecc7CGxYduXVBDheH1K2oADRlvw==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/esm": { - "version": "3.2.25", - "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", - "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "license": "MIT" - }, - "node_modules/execa": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-9.6.0.tgz", - "integrity": "sha512-jpWzZ1ZhwUmeWRhS7Qv3mhpOhLfwI+uAX4e5fOcXqwMR7EcJ0pj2kV1CVzHVMX/LphnKWD3LObjZCoJ71lKpHw==", - "license": "MIT", - "dependencies": { - "@sindresorhus/merge-streams": "^4.0.0", - "cross-spawn": "^7.0.6", - "figures": "^6.1.0", - "get-stream": "^9.0.0", - "human-signals": "^8.0.1", - "is-plain-obj": "^4.1.0", - "is-stream": "^4.0.1", - "npm-run-path": "^6.0.0", - "pretty-ms": "^9.2.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^4.0.0", - "yoctocolors": "^2.1.1" - }, - "engines": { - "node": "^18.19.0 || >=20.5.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/figures": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", - "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", - "license": "MIT", - "dependencies": { - "is-unicode-supported": "^2.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/focus-trap": { - "version": "7.6.5", - "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.5.tgz", - "integrity": "sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==", - "license": "MIT", - "peer": true, - "dependencies": { - "tabbable": "^6.2.0" - } - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/get-stream": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", - "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", - "license": "MIT", - "dependencies": { - "@sec-ant/readable-stream": "^0.4.1", - "is-stream": "^4.0.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hast-util-to-html": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", - "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/unist": "^3.0.0", - "ccount": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-whitespace": "^3.0.0", - "html-void-elements": "^3.0.0", - "mdast-util-to-hast": "^13.0.0", - "property-information": "^7.0.0", - "space-separated-tokens": "^2.0.0", - "stringify-entities": "^4.0.0", - "zwitch": "^2.0.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hast-util-whitespace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", - "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/hookable": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", - "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", - "license": "MIT" - }, - "node_modules/html-void-elements": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-3.0.0.tgz", - "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" - } - }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/human-signals": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", - "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", - "license": "Apache-2.0", - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "license": "MIT", - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "license": "MIT", - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-stream": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", - "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-unicode-supported": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", - "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-what": { - "version": "4.1.16", - "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", - "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", - "license": "MIT", - "engines": { - "node": ">=12.13" - }, - "funding": { - "url": "https://github.com/sponsors/mesqueeb" - } - }, - "node_modules/is-wsl": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", - "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", - "license": "MIT", - "dependencies": { - "is-inside-container": "^1.0.0" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "license": "ISC" - }, - "node_modules/juice": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/juice/-/juice-8.1.0.tgz", - "integrity": "sha512-FLzurJrx5Iv1e7CfBSZH68dC04EEvXvvVvPYB7Vx1WAuhCp1ZPIMtqxc+WTWxVkpTIC2Ach/GAv0rQbtGf6YMA==", - "license": "MIT", - "dependencies": { - "cheerio": "1.0.0-rc.10", - "commander": "^6.1.0", - "mensch": "^0.3.4", - "slick": "^1.12.2", - "web-resource-inliner": "^6.0.1" - }, - "bin": { - "juice": "bin/juice" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/line-column-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/line-column-path/-/line-column-path-3.0.0.tgz", - "integrity": "sha512-Atocnm7Wr9nuvAn97yEPQa3pcQI5eLQGBz+m6iTb+CVw+IOzYB9MrYK7jI7BfC9ISnT4Fu0eiwhAScV//rp4Hw==", - "license": "MIT", - "dependencies": { - "type-fest": "^2.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/linkify-it": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-4.0.1.tgz", - "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", - "license": "MIT", - "dependencies": { - "uc.micro": "^1.0.1" - } - }, - "node_modules/lite-youtube-embed": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/lite-youtube-embed/-/lite-youtube-embed-0.3.3.tgz", - "integrity": "sha512-gFfVVnj6NRjxVfJKo3qoLtpi0v5mn3AcR4eKD45wrxQuxzveFJUb+7Cr6uV6n+DjO8X3p0UzPPquhGt0H/y+NA==", - "license": "Apache-2.0" - }, - "node_modules/magic-string": { - "version": "0.30.17", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", - "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0" - } - }, - "node_modules/mark.js": { - "version": "8.11.1", - "resolved": "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz", - "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", - "license": "MIT" - }, - "node_modules/markdown-it": { - "version": "13.0.2", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-13.0.2.tgz", - "integrity": "sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - }, - "bin": { - "markdown-it": "bin/markdown-it.js" - } - }, - "node_modules/markdown-it-container": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/markdown-it-container/-/markdown-it-container-3.0.0.tgz", - "integrity": "sha512-y6oKTq4BB9OQuY/KLfk/O3ysFhB3IMYoIWhGJEidXt1NQFocFK2sA2t0NYZAMyMShAGL6x5OPIbrmXPIqaN9rw==", - "license": "MIT" - }, - "node_modules/markdown-it-mathjax3": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/markdown-it-mathjax3/-/markdown-it-mathjax3-4.3.2.tgz", - "integrity": "sha512-TX3GW5NjmupgFtMJGRauioMbbkGsOXAAt1DZ/rzzYmTHqzkO1rNAdiMD4NiruurToPApn2kYy76x02QN26qr2w==", - "license": "MIT", - "peer": true, - "dependencies": { - "juice": "^8.0.0", - "mathjax-full": "^3.2.0" - } - }, - "node_modules/mathjax-full": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/mathjax-full/-/mathjax-full-3.2.2.tgz", - "integrity": "sha512-+LfG9Fik+OuI8SLwsiR02IVdjcnRCy5MufYLi0C3TdMT56L/pjB0alMVGgoWJF8pN9Rc7FESycZB9BMNWIid5w==", - "license": "Apache-2.0", - "dependencies": { - "esm": "^3.2.25", - "mhchemparser": "^4.1.0", - "mj-context-menu": "^0.6.1", - "speech-rule-engine": "^4.0.6" - } - }, - "node_modules/mdast-util-to-hast": { - "version": "13.2.1", - "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", - "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", - "license": "MIT", - "dependencies": { - "@types/hast": "^3.0.0", - "@types/mdast": "^4.0.0", - "@ungap/structured-clone": "^1.0.0", - "devlop": "^1.0.0", - "micromark-util-sanitize-uri": "^2.0.0", - "trim-lines": "^3.0.0", - "unist-util-position": "^5.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/mdurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", - "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", - "license": "MIT" - }, - "node_modules/medium-zoom": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/medium-zoom/-/medium-zoom-1.1.0.tgz", - "integrity": "sha512-ewyDsp7k4InCUp3jRmwHBRFGyjBimKps/AJLjRSox+2q/2H4p/PNpQf+pwONWlJiOudkBXtbdmVbFjqyybfTmQ==", - "license": "MIT" - }, - "node_modules/mensch": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/mensch/-/mensch-0.3.4.tgz", - "integrity": "sha512-IAeFvcOnV9V0Yk+bFhYR07O3yNina9ANIN5MoXBKYJ/RLYPurd2d0yw14MDhpr9/momp0WofT1bPUh3hkzdi/g==", - "license": "MIT" - }, - "node_modules/mhchemparser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/mhchemparser/-/mhchemparser-4.2.1.tgz", - "integrity": "sha512-kYmyrCirqJf3zZ9t/0wGgRZ4/ZJw//VwaRVGA75C4nhE60vtnIzhl9J9ndkX/h6hxSN7pjg/cE0VxbnNM+bnDQ==", - "license": "Apache-2.0" - }, - "node_modules/micromark-util-character": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz", - "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-symbol": "^2.0.0", - "micromark-util-types": "^2.0.0" - } - }, - "node_modules/micromark-util-encode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", - "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/micromark-util-sanitize-uri": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", - "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT", - "dependencies": { - "micromark-util-character": "^2.0.0", - "micromark-util-encode": "^2.0.0", - "micromark-util-symbol": "^2.0.0" - } - }, - "node_modules/micromark-util-symbol": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", - "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/micromark-util-types": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", - "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", - "funding": [ - { - "type": "GitHub Sponsors", - "url": "https://github.com/sponsors/unifiedjs" - }, - { - "type": "OpenCollective", - "url": "https://opencollective.com/unified" - } - ], - "license": "MIT" - }, - "node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", - "license": "MIT", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/minisearch": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minisearch/-/minisearch-7.1.2.tgz", - "integrity": "sha512-R1Pd9eF+MD5JYDDSPAp/q1ougKglm14uEkPMvQ/05RGmx6G9wvmLTrTI/Q5iPNJLYqNdsDQ7qTGIcNWR+FrHmA==", - "license": "MIT" - }, - "node_modules/mitt": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", - "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", - "license": "MIT" - }, - "node_modules/mj-context-menu": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/mj-context-menu/-/mj-context-menu-0.6.1.tgz", - "integrity": "sha512-7NO5s6n10TIV96d4g2uDpG7ZDpIhMh0QNfGdJw/W47JswFcosz457wqz/b5sAKvl12sxINGFCn80NZHKwxQEXA==", - "license": "Apache-2.0" - }, - "node_modules/nanoid": { - "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", - "license": "MIT", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/npm-run-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", - "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0", - "unicorn-magic": "^0.3.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/oniguruma-to-es": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/oniguruma-to-es/-/oniguruma-to-es-3.1.1.tgz", - "integrity": "sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==", - "license": "MIT", - "dependencies": { - "emoji-regex-xs": "^1.0.0", - "regex": "^6.0.1", - "regex-recursion": "^6.0.2" - } - }, - "node_modules/open": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/open/-/open-10.1.2.tgz", - "integrity": "sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==", - "license": "MIT", - "dependencies": { - "default-browser": "^5.2.1", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^3.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open-editor": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/open-editor/-/open-editor-5.1.0.tgz", - "integrity": "sha512-KkNqM6FdoegD6WhY2YXmWcovOux45NV+zBped2+G3+V74zkDPkIl4cqh6hte2zNDojtwO2nBOV8U+sgziWfPrg==", - "license": "MIT", - "dependencies": { - "env-editor": "^1.1.0", - "execa": "^9.3.0", - "line-column-path": "^3.0.0", - "open": "^10.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse-ms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", - "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "license": "MIT" - }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", - "license": "MIT", - "dependencies": { - "parse5": "^6.0.1" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/perfect-debounce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", - "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", - "license": "MIT" - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "license": "ISC" - }, - "node_modules/postcss": { - "version": "8.5.6", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", - "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.11", - "picocolors": "^1.1.1", - "source-map-js": "^1.2.1" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/preact": { - "version": "10.26.9", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.26.9.tgz", - "integrity": "sha512-SSjF9vcnF27mJK1XyFMNJzFd5u3pQiATFqoaDy03XuN00u4ziveVVEGt5RKJrDR8MHE/wJo9Nnad56RLzS2RMA==", - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/preact" - } - }, - "node_modules/pretty-ms": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", - "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", - "license": "MIT", - "dependencies": { - "parse-ms": "^4.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/property-information": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz", - "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/regex/-/regex-6.0.1.tgz", - "integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==", - "license": "MIT", - "dependencies": { - "regex-utilities": "^2.3.0" - } - }, - "node_modules/regex-recursion": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-6.0.2.tgz", - "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", - "license": "MIT", - "dependencies": { - "regex-utilities": "^2.3.0" - } - }, - "node_modules/regex-utilities": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/regex-utilities/-/regex-utilities-2.3.0.tgz", - "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", - "license": "MIT" - }, - "node_modules/rfdc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", - "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", - "license": "MIT" - }, - "node_modules/rollup": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.44.2.tgz", - "integrity": "sha512-PVoapzTwSEcelaWGth3uR66u7ZRo6qhPHc0f2uRO9fX6XDVNrIiGYS0Pj9+R8yIIYSD/mCx2b16Ws9itljKSPg==", - "license": "MIT", - "dependencies": { - "@types/estree": "1.0.8" - }, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.44.2", - "@rollup/rollup-android-arm64": "4.44.2", - "@rollup/rollup-darwin-arm64": "4.44.2", - "@rollup/rollup-darwin-x64": "4.44.2", - "@rollup/rollup-freebsd-arm64": "4.44.2", - "@rollup/rollup-freebsd-x64": "4.44.2", - "@rollup/rollup-linux-arm-gnueabihf": "4.44.2", - "@rollup/rollup-linux-arm-musleabihf": "4.44.2", - "@rollup/rollup-linux-arm64-gnu": "4.44.2", - "@rollup/rollup-linux-arm64-musl": "4.44.2", - "@rollup/rollup-linux-loongarch64-gnu": "4.44.2", - "@rollup/rollup-linux-powerpc64le-gnu": "4.44.2", - "@rollup/rollup-linux-riscv64-gnu": "4.44.2", - "@rollup/rollup-linux-riscv64-musl": "4.44.2", - "@rollup/rollup-linux-s390x-gnu": "4.44.2", - "@rollup/rollup-linux-x64-gnu": "4.44.2", - "@rollup/rollup-linux-x64-musl": "4.44.2", - "@rollup/rollup-win32-arm64-msvc": "4.44.2", - "@rollup/rollup-win32-ia32-msvc": "4.44.2", - "@rollup/rollup-win32-x64-msvc": "4.44.2", - "fsevents": "~2.3.2" - } - }, - "node_modules/run-applescript": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", - "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/search-insights": { - "version": "2.17.3", - "resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz", - "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", - "license": "MIT", - "peer": true - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/shiki": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-2.5.0.tgz", - "integrity": "sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==", - "license": "MIT", - "dependencies": { - "@shikijs/core": "2.5.0", - "@shikijs/engine-javascript": "2.5.0", - "@shikijs/engine-oniguruma": "2.5.0", - "@shikijs/langs": "2.5.0", - "@shikijs/themes": "2.5.0", - "@shikijs/types": "2.5.0", - "@shikijs/vscode-textmate": "^10.0.2", - "@types/hast": "^3.0.4" - } - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/slick": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/slick/-/slick-1.12.2.tgz", - "integrity": "sha512-4qdtOGcBjral6YIBCWJ0ljFSKNLz9KkhbWtuGvUyRowl1kxfuE1x/Z/aJcaiilpb3do9bl5K7/1h9XC5wWpY/A==", - "license": "MIT (http://mootools.net/license.txt)", - "engines": { - "node": "*" - } - }, - "node_modules/source-map-js": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/space-separated-tokens": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", - "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/speakingurl": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", - "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/speech-rule-engine": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/speech-rule-engine/-/speech-rule-engine-4.1.2.tgz", - "integrity": "sha512-S6ji+flMEga+1QU79NDbwZ8Ivf0S/MpupQQiIC0rTpU/ZTKgcajijJJb1OcByBQDjrXCN1/DJtGz4ZJeBMPGJw==", - "license": "Apache-2.0", - "dependencies": { - "@xmldom/xmldom": "0.9.8", - "commander": "13.1.0", - "wicked-good-xpath": "1.3.0" - }, - "bin": { - "sre": "bin/sre" - } - }, - "node_modules/speech-rule-engine/node_modules/commander": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz", - "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==", - "license": "MIT", - "engines": { - "node": ">=18" - } - }, - "node_modules/stringify-entities": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", - "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", - "license": "MIT", - "dependencies": { - "character-entities-html4": "^2.0.0", - "character-entities-legacy": "^3.0.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/strip-final-newline": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", - "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/superjson": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.2.tgz", - "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==", - "license": "MIT", - "dependencies": { - "copy-anything": "^3.0.2" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/tabbable": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", - "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", - "license": "MIT" - }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "license": "MIT" - }, - "node_modules/trim-lines": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", - "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "license": "0BSD" - }, - "node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/uc.micro": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", - "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", - "license": "MIT" - }, - "node_modules/unicorn-magic": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", - "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/unist-util-is": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", - "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-position": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", - "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-stringify-position": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", - "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", - "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0", - "unist-util-visit-parents": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/unist-util-visit-parents": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", - "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-is": "^6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/valid-data-url": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/valid-data-url/-/valid-data-url-3.0.1.tgz", - "integrity": "sha512-jOWVmzVceKlVVdwjNSenT4PbGghU0SBIizAev8ofZVgivk/TVHXSbNL8LP6M3spZvkR9/QolkyJavGSX5Cs0UA==", - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/vfile": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz", - "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0", - "vfile-message": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vfile-message": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", - "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", - "license": "MIT", - "dependencies": { - "@types/unist": "^3.0.0", - "unist-util-stringify-position": "^4.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/vite": { - "version": "5.4.21", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", - "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", - "license": "MIT", - "peer": true, - "dependencies": { - "esbuild": "^0.21.3", - "postcss": "^8.4.43", - "rollup": "^4.20.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "sass-embedded": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/vitepress": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/vitepress/-/vitepress-1.6.3.tgz", - "integrity": "sha512-fCkfdOk8yRZT8GD9BFqusW3+GggWYZ/rYncOfmgcDtP3ualNHCAg+Robxp2/6xfH1WwPHtGpPwv7mbA3qomtBw==", - "license": "MIT", - "dependencies": { - "@docsearch/css": "3.8.2", - "@docsearch/js": "3.8.2", - "@iconify-json/simple-icons": "^1.2.21", - "@shikijs/core": "^2.1.0", - "@shikijs/transformers": "^2.1.0", - "@shikijs/types": "^2.1.0", - "@types/markdown-it": "^14.1.2", - "@vitejs/plugin-vue": "^5.2.1", - "@vue/devtools-api": "^7.7.0", - "@vue/shared": "^3.5.13", - "@vueuse/core": "^12.4.0", - "@vueuse/integrations": "^12.4.0", - "focus-trap": "^7.6.4", - "mark.js": "8.11.1", - "minisearch": "^7.1.1", - "shiki": "^2.1.0", - "vite": "^5.4.14", - "vue": "^3.5.13" - }, - "bin": { - "vitepress": "bin/vitepress.js" - }, - "peerDependencies": { - "markdown-it-mathjax3": "^4", - "postcss": "^8" - }, - "peerDependenciesMeta": { - "markdown-it-mathjax3": { - "optional": true - }, - "postcss": { - "optional": true - } - } - }, - "node_modules/vue": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.17.tgz", - "integrity": "sha512-LbHV3xPN9BeljML+Xctq4lbz2lVHCR6DtbpTf5XIO6gugpXUN49j2QQPcMj086r9+AkJ0FfUT8xjulKKBkkr9g==", - "license": "MIT", - "peer": true, - "dependencies": { - "@vue/compiler-dom": "3.5.17", - "@vue/compiler-sfc": "3.5.17", - "@vue/runtime-dom": "3.5.17", - "@vue/server-renderer": "3.5.17", - "@vue/shared": "3.5.17" - }, - "peerDependencies": { - "typescript": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/vue3-tabs-component": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/vue3-tabs-component/-/vue3-tabs-component-1.3.7.tgz", - "integrity": "sha512-nitYlPlTrKCW8msQS1HdtajYNRAfZsSP+2wQQymJDGDCK3um62mXP4oKUgAF5pRe6md86LMRQud7Ic3zmu7Zpg==", - "license": "MIT", - "peerDependencies": { - "vue": "^3.0.0" - } - }, - "node_modules/web-resource-inliner": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/web-resource-inliner/-/web-resource-inliner-6.0.1.tgz", - "integrity": "sha512-kfqDxt5dTB1JhqsCUQVFDj0rmY+4HLwGQIsLPbyrsN9y9WV/1oFDSx3BQ4GfCv9X+jVeQ7rouTqwK53rA/7t8A==", - "license": "MIT", - "dependencies": { - "ansi-colors": "^4.1.1", - "escape-goat": "^3.0.0", - "htmlparser2": "^5.0.0", - "mime": "^2.4.6", - "node-fetch": "^2.6.0", - "valid-data-url": "^3.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/web-resource-inliner/node_modules/domhandler": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-3.3.0.tgz", - "integrity": "sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==", - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.0.1" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/web-resource-inliner/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/web-resource-inliner/node_modules/htmlparser2": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-5.0.1.tgz", - "integrity": "sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ==", - "license": "MIT", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^3.3.0", - "domutils": "^2.4.2", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/fb55/htmlparser2?sponsor=1" - } - }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "license": "BSD-2-Clause" - }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "license": "MIT", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/wicked-good-xpath": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/wicked-good-xpath/-/wicked-good-xpath-1.3.0.tgz", - "integrity": "sha512-Gd9+TUn5nXdwj/hFsPVx5cuHHiF5Bwuc30jZ4+ronF1qHK5O7HD0sgmXWSEgwKquT3ClLoKPVbO6qGwVwLzvAw==", - "license": "MIT" - }, - "node_modules/yoctocolors": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", - "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/zwitch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", - "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - } - } -} diff --git a/docs/package.json b/docs/package.json index 0b836998bcb2..b95faf493e4f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -23,5 +23,8 @@ "open-editor": "^5.0.0", "vitepress": "^1.6.3", "vue3-tabs-component": "^1.3.7" + }, + "devDependencies": { + "prettier": "^3.2.0" } } diff --git a/docs/public/middleware/graph_full.json b/docs/public/middleware/graph_full.json index 8f09680777e2..788e6cff835e 100644 --- a/docs/public/middleware/graph_full.json +++ b/docs/public/middleware/graph_full.json @@ -1 +1 @@ -{"nodes": [{"id": "m_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_system_power_simulator", "name": "system_power_simulator", "type": "Module", "color": "#666666"}, {"id": "m_lightware_sf45_serial", "name": "lightware_sf45_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_airship_att_control", "name": "airship_att_control", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_sensor_airspeed_sim", "name": "sensor_airspeed_sim", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rover_differential", "name": "rover_differential", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_simulator", "name": "battery_simulator", "type": "Module", "color": "#666666"}, {"id": "m_simulator_mavlink", "name": "simulator_mavlink", "type": "Module", "color": "#666666"}, {"id": "m_io_bypass_control", "name": "io_bypass_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_hardfault_stream", "name": "hardfault_stream", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_rover_ackermann", "name": "rover_ackermann", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_template_module", "name": "template_module", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_agp_sim", "name": "sensor_agp_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_linux_pwm_out", "name": "linux_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_rpm_simulator", "name": "rpm_simulator", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_rover_mecanum", "name": "rover_mecanum", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_ets_airspeed", "name": "ets_airspeed", "type": "Module", "color": "#666666"}, {"id": "m_sagetech_mxs", "name": "sagetech_mxs", "type": "Module", "color": "#666666"}, {"id": "m_i2c_launcher", "name": "i2c_launcher", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250_i2c", "name": "mpu9250_i2c", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1_mag", "name": "lsm9ds1_mag", "type": "Module", "color": "#666666"}, {"id": "m_pps_capture", "name": "pps_capture", "type": "Module", "color": "#666666"}, {"id": "m_rpm_capture", "name": "rpm_capture", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_leddar_one", "name": "leddar_one", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls_pwm", "name": "ll40ls_pwm", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_bmi088_i2c", "name": "bmi088_i2c", "type": "Module", "color": "#666666"}, {"id": "m_iam20680hp", "name": "iam20680hp", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_pwm", "name": "rgbled_pwm", "type": "Module", "color": "#666666"}, {"id": "m_iridiumsbd", "name": "iridiumsbd", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_uavcannode", "name": "uavcannode", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_microbench", "name": "microbench", "type": "Module", "color": "#666666"}, {"id": "m_vertiq_io", "name": "vertiq_io", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_mpl3115a2", "name": "mpl3115a2", "type": "Module", "color": "#666666"}, {"id": "m_tcbp001ta", "name": "tcbp001ta", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_adis16470", "name": "adis16470", "type": "Module", "color": "#666666"}, {"id": "m_adis16477", "name": "adis16477", "type": "Module", "color": "#666666"}, {"id": "m_adis16497", "name": "adis16497", "type": "Module", "color": "#666666"}, {"id": "m_adis16507", "name": "adis16507", "type": "Module", "color": "#666666"}, {"id": "m_icm20608g", "name": "icm20608g", "type": "Module", "color": "#666666"}, {"id": "m_icm40609d", "name": "icm40609d", "type": "Module", "color": "#666666"}, {"id": "m_icm42670p", "name": "icm42670p", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_vectornav", "name": "vectornav", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_rpi_rc_in", "name": "rpi_rc_in", "type": "Module", "color": "#666666"}, {"id": "m_tattu_can", "name": "tattu_can", "type": "Module", "color": "#666666"}, {"id": "m_uwb_sr150", "name": "uwb_sr150", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_gz_bridge", "name": "gz_bridge", "type": "Module", "color": "#666666"}, {"id": "m_voxl_esc", "name": "voxl_esc", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_mappydot", "name": "mappydot", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_icm20689", "name": "icm20689", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_icm42605", "name": "icm42605", "type": "Module", "color": "#666666"}, {"id": "m_icm45686", "name": "icm45686", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_iim42653", "name": "iim42653", "type": "Module", "color": "#666666"}, {"id": "m_neopixel", "name": "neopixel", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_roboclaw", "name": "roboclaw", "type": "Module", "color": "#666666"}, {"id": "m_voxl2_io", "name": "voxl2_io", "type": "Module", "color": "#666666"}, {"id": "m_gyro_fft", "name": "gyro_fft", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_asp5033", "name": "asp5033", "type": "Module", "color": "#666666"}, {"id": "m_afbrs50", "name": "afbrs50", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_gy_us42", "name": "gy_us42", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_mpu6000", "name": "mpu6000", "type": "Module", "color": "#666666"}, {"id": "m_mpu6500", "name": "mpu6500", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250", "name": "mpu9250", "type": "Module", "color": "#666666"}, {"id": "m_lsm303d", "name": "lsm303d", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1", "name": "lsm9ds1", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_pcf8583", "name": "pcf8583", "type": "Module", "color": "#666666"}, {"id": "m_tap_esc", "name": "tap_esc", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_failure", "name": "failure", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_lps25h", "name": "lps25h", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ms5837", "name": "ms5837", "type": "Module", "color": "#666666"}, {"id": "m_cyphal", "name": "cyphal", "type": "Module", "color": "#666666"}, {"id": "m_ms4515", "name": "ms4515", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_mb12xx", "name": "mb12xx", "type": "Module", "color": "#666666"}, {"id": "m_pga460", "name": "pga460", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi055", "name": "bmi055", "type": "Module", "color": "#666666"}, {"id": "m_bmi085", "name": "bmi085", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_bmi270", "name": "bmi270", "type": "Module", "color": "#666666"}, {"id": "m_sch16t", "name": "sch16t", "type": "Module", "color": "#666666"}, {"id": "m_l3gd20", "name": "l3gd20", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_bmm350", "name": "bmm350", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_atxxxx", "name": "atxxxx", "type": "Module", "color": "#666666"}, {"id": "m_ina220", "name": "ina220", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_voxlpm", "name": "voxlpm", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_srf02", "name": "srf02", "type": "Module", "color": "#666666"}, {"id": "m_srf05", "name": "srf05", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_sht3x", "name": "sht3x", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_tests", "name": "tests", "type": "Module", "color": "#666666"}, {"id": "m_auav", "name": "auav", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#d841d4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#ccd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d841a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "topic", "color": "#41d870", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#41a8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#d84184", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41d842", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_internal_combustion_engine_status", "name": "internal_combustion_engine_status", "type": "topic", "color": "#41d875", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d88441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#88d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d8417f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#5bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#41d897", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#72d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#41d8bf", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#417bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d841c8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#8ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#44d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d84c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#50d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#4ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#41a3d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#bbd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#82d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#55d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#41bfd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#419dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d841c3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8ac41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41c4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#b041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#c641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#99d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#77d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d89d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8b3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8b9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_obstacle_distance_fused", "name": "obstacle_distance_fused", "type": "topic", "color": "#41d0d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ObstacleDistance.msg"}, {"id": "t_rover_attitude_setpoint", "name": "rover_attitude_setpoint", "type": "topic", "color": "#4175d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_position_setpoint", "name": "rover_position_setpoint", "type": "topic", "color": "#4170d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_steering_setpoint", "name": "rover_steering_setpoint", "type": "topic", "color": "#4164d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_throttle_setpoint", "name": "rover_throttle_setpoint", "type": "topic", "color": "#415fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_velocity_setpoint", "name": "rover_velocity_setpoint", "type": "topic", "color": "#4159d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841a6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d8415d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d84157", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84151", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#aad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#cc41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d8418a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d84179", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#d7d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#b5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#41d848", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41cad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#41b9d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d84190", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d85d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#41b3d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841ac", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_aux_global_position", "name": "aux_global_position", "type": "topic", "color": "#d88a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource2d.msg"}, {"id": "t_esc_serial_passthru", "name": "esc_serial_passthru", "type": "topic", "color": "#c6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/MavlinkTunnel.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#93d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d892", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_rate_setpoint", "name": "rover_rate_setpoint", "type": "topic", "color": "#416ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#7d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#b541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841b7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841b2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8414c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#d87f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d88c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#4197d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#8e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#bb41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d84195", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#41d84e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_iridiumsbd_status", "name": "iridiumsbd_status", "type": "topic", "color": "#41d87b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#41d8d0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_obstacle_distance", "name": "obstacle_distance", "type": "topic", "color": "#41d5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ObstacleDistance.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#4148d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#5b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_hygrometer", "name": "sensor_hygrometer", "type": "topic", "color": "#7241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#9341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d85741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#b0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41d8d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#4181d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro_fifo", "name": "sensor_gyro_fifo", "type": "topic", "color": "#6c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#8241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#aa41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d841ce", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d84173", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos", "name": "actuator_servos", "type": "topic", "color": "#d86241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8b741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8c841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#d2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#6cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#66d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#61d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d853", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#5541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#d741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d89b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8a641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#9fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#7dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d8ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#4441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#9f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d84162", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d8a141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d85f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d864", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d881", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8a8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#4142d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_battery_info", "name": "battery_info", "type": "topic", "color": "#d89041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d886", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#41aed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#4186d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#4a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#9941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#c141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8c341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8ce41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41d8a3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pps_capture", "name": "pps_capture", "type": "topic", "color": "#4192d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#5041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#6641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#a441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#d241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d8419b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d87341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d8d441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#c1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#414ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#6141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#7741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_uwb", "name": "sensor_uwb", "type": "topic", "color": "#8841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#418cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d87941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d86a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8b241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#41d859", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d8c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#a4d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84146", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}, {"id": "t_rpm", "name": "rpm", "type": "topic", "color": "#4153d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}], "links": [{"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#d87341", "style": "dashed"}, {"source": "m_afbrs50", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d8415d", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d84157", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#d87f41", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_asp5033", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#d841ce", "style": "dashed"}, {"source": "m_auav", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_auav", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_info", "color": "#d89041", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_info", "color": "#d89041", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_bmm350", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d87341", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#9941d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d8a641", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d89b41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8a641", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#a4d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#9fd841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#99d841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d85f", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d864", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#4197d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#417bd8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841ac", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d84162", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d86841", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8ac41", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_cyphal", "target": "t_battery_info", "color": "#d89041", "style": "dashed"}, {"source": "m_cyphal", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_cyphal", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8bd41", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#bbd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#b5d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#b0d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#aad841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#8241d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d841ce", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841a6", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d8418a", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d84173", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84146", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_ets_airspeed", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_failure", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d886", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#b541d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841b2", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d88c", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88441", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#77d841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#a441d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#93d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#8ed841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#88d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#82d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#7dd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d886", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#41d897", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d89d", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8ae", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#41aed8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#41a8d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#9341d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d8417f", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#7dd841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#9341d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#61d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#5bd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#50d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#4ad841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#41d848", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#41d84e", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#41d8d0", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d853", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#4441d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#6141d8", "style": "dashed"}, {"source": "m_gy_us42", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_attitude_status", "color": "#5bd841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_information", "color": "#55d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_obstacle_distance", "color": "#41d5d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gps", "color": "#6141d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#d841d4", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_attitude_groundtruth", "color": "#d841c8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_global_position_groundtruth", "color": "#d841a1", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_local_position_groundtruth", "color": "#d84184", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_visual_odometry", "color": "#d84151", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_ina220", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_internal_combustion_engine_control", "target": "t_internal_combustion_engine_control", "color": "#41d870", "style": "dashed"}, {"source": "m_internal_combustion_engine_control", "target": "t_internal_combustion_engine_status", "color": "#41d875", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_iridiumsbd", "target": "t_iridiumsbd_status", "color": "#41d87b", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#41d881", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d84190", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d892", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_leddar_one", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_obstacle_distance", "color": "#41d5d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_obstacle_distance_fused", "color": "#41d0d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_attitude", "color": "#d841ce", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_ll40ls_pwm", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8b241", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#b0d841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#d841a6", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#d8418a", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_odometry", "color": "#d84173", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8a8", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#d241d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_lps25h", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_lsm9ds1_mag", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d886", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8b3", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8b9", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d84162", "style": "dashed"}, {"source": "m_mappydot", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d87941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d8a141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8b741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8c341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8c841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8ce41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d8d441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_esc_serial_passthru", "color": "#c6d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#a4d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#72d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#5bd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#55d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#44d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41d842", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#41d853", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#41d881", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d892", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#41d8bf", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41d8c4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_obstacle_distance", "color": "#41d5d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41cad8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#41bfd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#41b9d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#41b3d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#4181d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#6141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#aa41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#b541d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#bb41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#c641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#d741d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d841ce", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d841c3", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d841a6", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d8418a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84179", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84151", "style": "dashed"}, {"source": "m_mb12xx", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88441", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#9f41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#b541d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841c3", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841b2", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d8417f", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d84c41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_mpl3115a2", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_ms4515", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_ms5837", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8b741", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#ccd841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#6cd841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#66d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d864", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d8c4", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d8ca", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41d8d5", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#419dd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#414ed8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#4148d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#bb41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841a6", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d84190", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d84168", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d84162", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#41d859", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_pcf8583", "target": "t_rpm", "color": "#4153d8", "style": "dashed"}, {"source": "m_pga460", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_pps_capture", "target": "t_pps_capture", "color": "#4192d8", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#418cd8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d85d41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#4186d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#4142d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8b9", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_position_controller_status", "color": "#41a3d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_attitude_setpoint", "color": "#4175d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_position_setpoint", "color": "#4170d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_rate_setpoint", "color": "#416ad8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_steering_setpoint", "color": "#4164d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_throttle_setpoint", "color": "#415fd8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_velocity_setpoint", "color": "#4159d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_attitude_setpoint", "color": "#4175d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_position_setpoint", "color": "#4170d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_rate_setpoint", "color": "#416ad8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_steering_setpoint", "color": "#4164d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_throttle_setpoint", "color": "#415fd8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_velocity_setpoint", "color": "#4159d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_attitude_setpoint", "color": "#4175d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_position_setpoint", "color": "#4170d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_rate_setpoint", "color": "#416ad8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_steering_setpoint", "color": "#4164d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_throttle_setpoint", "color": "#415fd8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_velocity_setpoint", "color": "#4159d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#41a3d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841c3", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d8415d", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#d84157", "style": "dashed"}, {"source": "m_rpi_rc_in", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_pwm_input", "color": "#418cd8", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_rpm", "color": "#4153d8", "style": "dashed"}, {"source": "m_rpm_simulator", "target": "t_rpm", "color": "#4153d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#4142d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_sagetech_mxs", "target": "t_transponder_report", "color": "#bb41d8", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_sensor_agp_sim", "target": "t_aux_global_position", "color": "#d88a41", "style": "dashed"}, {"source": "m_sensor_airspeed_sim", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#6141d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d87941", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#5541d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#8241d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#8e41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d8419b", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d84195", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#41d853", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#4441d8", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#6141d8", "style": "dashed"}, {"source": "m_sht3x", "target": "t_sensor_hygrometer", "color": "#7241d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_differential_pressure", "color": "#d7d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_irlock_report", "color": "#41d881", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_rpm", "color": "#4153d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#d841d4", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_attitude_groundtruth", "color": "#d841c8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_global_position_groundtruth", "color": "#d841a1", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_local_position_groundtruth", "color": "#d84184", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84179", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84151", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d87941", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#4a41d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#6641d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro_fifo", "color": "#6c41d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#d841d4", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d841c8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d841a1", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#d84184", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_srf02", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_srf05", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_system_power_simulator", "target": "t_system_power", "color": "#9941d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_tattu_can", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_tcbp001ta", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#5b41d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_tests", "target": "t_dataman_request", "color": "#d8b741", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#7d41d8", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_battery_info", "color": "#d89041", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41c4d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#4142d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#cc41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_gps_inject_data", "color": "#41d853", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_led_control", "color": "#41d8a3", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_tune_control", "color": "#c141d8", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d8415d", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d84157", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841c3", "style": "dashed"}, {"source": "m_uwb_sr150", "target": "t_sensor_uwb", "color": "#8841d8", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d841bd", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#7741d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_estimator_status", "color": "#b0d841", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_baro", "color": "#5041d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_gps", "color": "#6141d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_selection", "color": "#8241d8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#d2d841", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_armed", "color": "#d84641", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_motors", "color": "#d85141", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_outputs", "color": "#d85741", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_servos", "color": "#d86241", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_esc_status", "color": "#c1d841", "style": "dashed"}, {"source": "m_voxlpm", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#7dd841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#9341d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#b041d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841c3", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841b7", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d8415d", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d84157", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8414c", "style": "dashed"}, {"source": "t_manual_control_setpoint", "target": "m_airship_att_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airship_att_control", "color": "#d84162", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d87941", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#bbd841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#b0d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#77d841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d89d", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#a441d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d8415d", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#5541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d84179", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#d84151", "style": "normal"}, {"source": "t_battery_status", "target": "m_atxxxx", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_atxxxx", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_atxxxx", "color": "#d84162", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_simulator", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_battery_simulator", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_simulator", "color": "#d84162", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d87341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d84162", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d87341", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#d841ce", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_capture", "color": "#4192d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d841bd", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8a641", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#5bd841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d841a6", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_trigger", "color": "#4192d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d8418a", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d84641", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#d87f41", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89541", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8b241", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#d7d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#d2d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#c1d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#bbd841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#b5d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#b0d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#aad841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#a4d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#6cd841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d864", "style": "normal"}, {"source": "t_iridiumsbd_status", "target": "m_commander", "color": "#41d87b", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8a8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8b3", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8b9", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d8ca", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41d8d5", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41cad8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#4197d8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#418cd8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#4148d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#4142d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#5b41d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#6141d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#6641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#7741d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#8241d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#8e41d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#9941d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841b7", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d84162", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8414c", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84146", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#99d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#7dd841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8b9", "style": "normal"}, {"source": "t_rpm", "target": "m_control_allocator", "color": "#4153d8", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#9341d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#b041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d8415d", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d84157", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#d84162", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cyphal", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_test", "target": "m_cyphal", "color": "#d86e41", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_cyphal", "color": "#6141d8", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8b741", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_dshot", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_dshot", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#d84162", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d87941", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#d87f41", "style": "normal"}, {"source": "t_aux_global_position", "target": "m_ekf2", "color": "#d88a41", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#d2d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d892", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d89d", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#5541d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#8241d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d8419b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84151", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#c1d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_failure", "color": "#d841b7", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#9f41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d84162", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d84162", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#d87f41", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d88441", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#82d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d84162", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d84162", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#d87f41", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#8ed841", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#88d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#7dd841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d897", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8ae", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d84162", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84146", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#d87f41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8b3", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#419dd8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d84162", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84146", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#d87f41", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d89541", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d8ac41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d84162", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#d89541", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#5bd841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#55d841", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#44d841", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41d842", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8b3", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#419dd8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d84168", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d853", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#5b41d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#6641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d84162", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_fft", "color": "#6641d8", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_gyro_fft", "color": "#6c41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_gyro_fft", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_gyro_fft", "color": "#d84195", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_gz_bridge", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_gz_bridge", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_gz_bridge", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_gz_bridge", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_gz_bridge", "color": "#61d841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_gz_bridge", "color": "#50d841", "style": "normal"}, {"source": "t_gripper", "target": "m_gz_bridge", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_gz_bridge", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_gz_bridge", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_gz_bridge", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gz_bridge", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gz_bridge", "color": "#d841bd", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_hardfault_stream", "color": "#aa41d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#4a41d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d87941", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#d89541", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#c1d841", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#41d864", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_i2c_launcher", "color": "#d84162", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina220", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina220", "color": "#d84162", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d84162", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#d84162", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#d84162", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_internal_combustion_engine_control", "color": "#d85141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_internal_combustion_engine_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_rpm", "target": "m_internal_combustion_engine_control", "color": "#4153d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_internal_combustion_engine_control", "color": "#d84162", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_io_bypass_control", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84641", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#d87f41", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d89d", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#419dd8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#8241d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#9f41d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d8415d", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d8418a", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#ccd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d84162", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_lightware_sf45_serial", "color": "#d2d841", "style": "normal"}, {"source": "t_obstacle_distance", "target": "m_lightware_sf45_serial", "color": "#41d5d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_lightware_sf45_serial", "color": "#d841ce", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_linux_pwm_out", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_linux_pwm_out", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_linux_pwm_out", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_linux_pwm_out", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_linux_pwm_out", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_linux_pwm_out", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_linux_pwm_out", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_linux_pwm_out", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_linux_pwm_out", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_linux_pwm_out", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_linux_pwm_out", "color": "#d841bd", "style": "normal"}, {"source": "t_pwm_input", "target": "m_ll40ls_pwm", "color": "#418cd8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#d84641", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#d2d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#41d892", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#5541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#d84179", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#d84151", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89541", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8b3", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#d741d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d84162", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#7741d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d84162", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8b9", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d84162", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d85d41", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d87941", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#d87f41", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d88441", "style": "normal"}, {"source": "t_battery_info", "target": "m_mavlink", "color": "#d89041", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89541", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d89b41", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d8a141", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8a641", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d8b241", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d8bd41", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8c341", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8c841", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8ce41", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d8d441", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#d7d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#d2d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#c1d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#bbd841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#b5d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#b0d841", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#a4d841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#9fd841", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#93d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#6cd841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#5bd841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#55d841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#50d841", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#4ad841", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#41d848", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#41d84e", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#41d853", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d85f", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d864", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d86a", "style": "normal"}, {"source": "t_internal_combustion_engine_status", "target": "m_mavlink", "color": "#41d875", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d892", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8b3", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d8b9", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41d8c4", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41d8ca", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#41d8d0", "style": "normal"}, {"source": "t_obstacle_distance_fused", "target": "m_mavlink", "color": "#41d0d8", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41c4d8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#41aed8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#41a3d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#419dd8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#417bd8", "style": "normal"}, {"source": "t_rpm", "target": "m_mavlink", "color": "#4153d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#4148d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#4441d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#5b41d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#6141d8", "style": "normal"}, {"source": "t_sensor_hygrometer", "target": "m_mavlink", "color": "#7241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#7741d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#8241d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#a441d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#bb41d8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#cc41d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#d241d8", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d841c8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841b7", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d8419b", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#d84184", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d8417f", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d84173", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d8415d", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d84146", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d88441", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d84162", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d84c41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d84157", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841b2", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d8418a", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89541", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8ac41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d84162", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_microbench", "color": "#9fd841", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_microbench", "color": "#6641d8", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_microbench", "color": "#6c41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_microbench", "color": "#d8418a", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#d87f41", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d89541", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41d864", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d86a", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d84162", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8bd41", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#66d841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d864", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d892", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d8c4", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#41a8d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#41a3d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#414ed8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#bb41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d84162", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84146", "style": "normal"}, {"source": "t_led_control", "target": "m_neopixel", "color": "#41d8a3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pca9685_pwm_out", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pca9685_pwm_out", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#d84641", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_pps_capture", "color": "#6141d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out_sim", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_px4io", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_px4io", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d8b3", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#4186d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d84162", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#d87341", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d84162", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d86a", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8b9", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#4181d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41d8a3", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#41d8a3", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#41d8a3", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#41d8a3", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_pwm", "color": "#41d8a3", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_roboclaw", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_ackermann", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos", "target": "m_rover_ackermann", "color": "#d86241", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_ackermann", "color": "#41d8b3", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_ackermann", "color": "#41cad8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_rover_ackermann", "color": "#41a3d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_ackermann", "color": "#419dd8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_ackermann", "color": "#4175d8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_ackermann", "color": "#4170d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_ackermann", "color": "#416ad8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_ackermann", "color": "#4164d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_ackermann", "color": "#415fd8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_ackermann", "color": "#4159d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_ackermann", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_ackermann", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_ackermann", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_ackermann", "color": "#d8418a", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_differential", "color": "#d85141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_differential", "color": "#41d8b3", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_differential", "color": "#41cad8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_differential", "color": "#419dd8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_differential", "color": "#4175d8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_differential", "color": "#4170d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_differential", "color": "#416ad8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_differential", "color": "#4164d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_differential", "color": "#415fd8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_differential", "color": "#4159d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_differential", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_differential", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_differential", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_differential", "color": "#d8418a", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_mecanum", "color": "#d85141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_mecanum", "color": "#41d8b3", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_mecanum", "color": "#41cad8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_mecanum", "color": "#419dd8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_mecanum", "color": "#4175d8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_mecanum", "color": "#4170d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_mecanum", "color": "#416ad8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_mecanum", "color": "#4164d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_mecanum", "color": "#415fd8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_mecanum", "color": "#4159d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_mecanum", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_mecanum", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_mecanum", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_mecanum", "color": "#d8418a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#419dd8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#d841a6", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#d8418a", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#d84641", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_sagetech_mxs", "color": "#6141d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_sagetech_mxs", "color": "#bb41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_sagetech_mxs", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_sagetech_mxs", "color": "#d84162", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d89541", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8b241", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#9fd841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_agp_sim", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_sensor_airspeed_sim", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#d84184", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d84184", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841c8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841a1", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d87341", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#d7d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#b5d841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#5b41d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#6641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#7741d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#7d41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d8419b", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d84195", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#41d853", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_mavlink", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_mavlink", "color": "#d85d41", "style": "normal"}, {"source": "t_battery_status", "target": "m_simulator_mavlink", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_simulator_mavlink", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_simulator_mavlink", "color": "#d84162", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d85d41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_tap_esc", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_tap_esc", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_tap_esc", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_tap_esc", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_tap_esc", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_tap_esc", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_tap_esc", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_tap_esc", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_tap_esc", "color": "#41d88c", "style": "normal"}, {"source": "t_led_control", "target": "m_tap_esc", "color": "#41d8a3", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_tap_esc", "color": "#41d8b3", "style": "normal"}, {"source": "t_tune_control", "target": "m_tap_esc", "color": "#c141d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_tap_esc", "color": "#d841bd", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#6641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#7741d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d841bd", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_template_module", "color": "#5541d8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_tests", "color": "#d8bd41", "style": "normal"}, {"source": "t_input_rc", "target": "m_tests", "color": "#41d86a", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#c141d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#61d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#41d853", "style": "normal"}, {"source": "t_gripper", "target": "m_uavcan", "color": "#41d859", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#41d864", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_uavcan", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d88c", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#41d8a3", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8b3", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#41bfd8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#41b9d8", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#41b3d8", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#c141d8", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#c641d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d84162", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#d8416e", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#d8418a", "style": "normal"}, {"source": "t_sensor_uwb", "target": "m_uwb_sr150", "color": "#8841d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841b7", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_vertiq_io", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_vertiq_io", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_vertiq_io", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_vertiq_io", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_vertiq_io", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_vertiq_io", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_vertiq_io", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_vertiq_io", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_vertiq_io", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_vertiq_io", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vertiq_io", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl2_io", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_voxl2_io", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl2_io", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl2_io", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl2_io", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl2_io", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl2_io", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl2_io", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl2_io", "color": "#41d88c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl2_io", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl2_io", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl_esc", "color": "#d84641", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_voxl_esc", "color": "#d85141", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl_esc", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl_esc", "color": "#d86e41", "style": "normal"}, {"source": "t_esc_serial_passthru", "target": "m_voxl_esc", "color": "#c6d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxl_esc", "color": "#77d841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl_esc", "color": "#61d841", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl_esc", "color": "#41d859", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl_esc", "color": "#41d870", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl_esc", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl_esc", "color": "#41d88c", "style": "normal"}, {"source": "t_led_control", "target": "m_voxl_esc", "color": "#41d8a3", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl_esc", "color": "#41d8b3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl_esc", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_voxl_esc", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxl_esc", "color": "#d84162", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxlpm", "color": "#77d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxlpm", "color": "#d84162", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#d87f41", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#72d841", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d864", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#419dd8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#a441d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841ac", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d8417f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d84162", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_system_power_simulator", "name": "system_power_simulator", "type": "Module", "color": "#666666"}, {"id": "m_lightware_sf45_serial", "name": "lightware_sf45_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_airship_att_control", "name": "airship_att_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_airspeed_sim", "name": "sensor_airspeed_sim", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_rover_differential", "name": "rover_differential", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_io_bypass_control", "name": "io_bypass_control", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_battery_simulator", "name": "battery_simulator", "type": "Module", "color": "#666666"}, {"id": "m_simulator_mavlink", "name": "simulator_mavlink", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_template_module", "name": "template_module", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_rover_ackermann", "name": "rover_ackermann", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_agp_sim", "name": "sensor_agp_sim", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_linux_pwm_out", "name": "linux_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_rpm_simulator", "name": "rpm_simulator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_rover_mecanum", "name": "rover_mecanum", "type": "Module", "color": "#666666"}, {"id": "m_ets_airspeed", "name": "ets_airspeed", "type": "Module", "color": "#666666"}, {"id": "m_sagetech_mxs", "name": "sagetech_mxs", "type": "Module", "color": "#666666"}, {"id": "m_i2c_launcher", "name": "i2c_launcher", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_rpm_capture", "name": "rpm_capture", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250_i2c", "name": "mpu9250_i2c", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1_mag", "name": "lsm9ds1_mag", "type": "Module", "color": "#666666"}, {"id": "m_pps_capture", "name": "pps_capture", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls_pwm", "name": "ll40ls_pwm", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_leddar_one", "name": "leddar_one", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_bmi088_i2c", "name": "bmi088_i2c", "type": "Module", "color": "#666666"}, {"id": "m_iam20680hp", "name": "iam20680hp", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_iridiumsbd", "name": "iridiumsbd", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_uavcannode", "name": "uavcannode", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_pwm", "name": "rgbled_pwm", "type": "Module", "color": "#666666"}, {"id": "m_microbench", "name": "microbench", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_adis16507", "name": "adis16507", "type": "Module", "color": "#666666"}, {"id": "m_adis16470", "name": "adis16470", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_adis16477", "name": "adis16477", "type": "Module", "color": "#666666"}, {"id": "m_adis16497", "name": "adis16497", "type": "Module", "color": "#666666"}, {"id": "m_icm40609d", "name": "icm40609d", "type": "Module", "color": "#666666"}, {"id": "m_icm20608g", "name": "icm20608g", "type": "Module", "color": "#666666"}, {"id": "m_icm42670p", "name": "icm42670p", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_vectornav", "name": "vectornav", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_rpi_rc_in", "name": "rpi_rc_in", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_vertiq_io", "name": "vertiq_io", "type": "Module", "color": "#666666"}, {"id": "m_tattu_can", "name": "tattu_can", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_uwb_sr150", "name": "uwb_sr150", "type": "Module", "color": "#666666"}, {"id": "m_tcbp001ta", "name": "tcbp001ta", "type": "Module", "color": "#666666"}, {"id": "m_mpl3115a2", "name": "mpl3115a2", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_gz_bridge", "name": "gz_bridge", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_voxl2_io", "name": "voxl2_io", "type": "Module", "color": "#666666"}, {"id": "m_mappydot", "name": "mappydot", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_icm42605", "name": "icm42605", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_iim42653", "name": "iim42653", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_icm20689", "name": "icm20689", "type": "Module", "color": "#666666"}, {"id": "m_icm45686", "name": "icm45686", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_roboclaw", "name": "roboclaw", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_voxl_esc", "name": "voxl_esc", "type": "Module", "color": "#666666"}, {"id": "m_neopixel", "name": "neopixel", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_gyro_fft", "name": "gyro_fft", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_afbrs50", "name": "afbrs50", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_gy_us42", "name": "gy_us42", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_lsm303d", "name": "lsm303d", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1", "name": "lsm9ds1", "type": "Module", "color": "#666666"}, {"id": "m_mpu6500", "name": "mpu6500", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250", "name": "mpu9250", "type": "Module", "color": "#666666"}, {"id": "m_mpu6000", "name": "mpu6000", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_asp5033", "name": "asp5033", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_pcf8583", "name": "pcf8583", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_tap_esc", "name": "tap_esc", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_failure", "name": "failure", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_atxxxx", "name": "atxxxx", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_mb12xx", "name": "mb12xx", "type": "Module", "color": "#666666"}, {"id": "m_pga460", "name": "pga460", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_l3gd20", "name": "l3gd20", "type": "Module", "color": "#666666"}, {"id": "m_bmi270", "name": "bmi270", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_bmi055", "name": "bmi055", "type": "Module", "color": "#666666"}, {"id": "m_bmi085", "name": "bmi085", "type": "Module", "color": "#666666"}, {"id": "m_sch16t", "name": "sch16t", "type": "Module", "color": "#666666"}, {"id": "m_cyphal", "name": "cyphal", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_bmm350", "name": "bmm350", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_ms4515", "name": "ms4515", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina220", "name": "ina220", "type": "Module", "color": "#666666"}, {"id": "m_voxlpm", "name": "voxlpm", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_lps25h", "name": "lps25h", "type": "Module", "color": "#666666"}, {"id": "m_ms5837", "name": "ms5837", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_sht3x", "name": "sht3x", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_srf02", "name": "srf02", "type": "Module", "color": "#666666"}, {"id": "m_srf05", "name": "srf05", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_tests", "name": "tests", "type": "Module", "color": "#666666"}, {"id": "m_auav", "name": "auav", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#41d866", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#d8a141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#4194d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "topic", "color": "#d8ad41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#417dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#c541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#d84174", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_internal_combustion_engine_status", "name": "internal_combustion_engine_status", "type": "topic", "color": "#41d88e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#4150d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d8c941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#ba41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#41d850", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#d86341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#76d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#d85241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#c0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#419ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#4155d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#81d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#4189d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#65d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#41d8c1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#5941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#af41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#d88541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#bad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#a941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d84163", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#d84157", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#d84152", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#cbd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#41bcd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#d841d4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#d8cf41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#59d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_attitude_setpoint", "name": "rover_attitude_setpoint", "type": "topic", "color": "#41d86c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8c7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#4166d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_throttle_setpoint", "name": "rover_throttle_setpoint", "type": "topic", "color": "#5341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_position_setpoint", "name": "rover_position_setpoint", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_steering_setpoint", "name": "rover_steering_setpoint", "type": "topic", "color": "#7041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#9841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#cb41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_obstacle_distance_fused", "name": "obstacle_distance_fused", "type": "topic", "color": "#d841cf", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ObstacleDistance.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#d841c3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84185", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_rover_velocity_setpoint", "name": "rover_velocity_setpoint", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#92d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#70d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#41c7d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#4161d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d84146", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#98d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#5fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#53d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#418ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#414ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#b441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#41d8a5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#41b0d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#41abd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d841a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#b4d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#41d84a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#41d861", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_serial_passthru", "name": "esc_serial_passthru", "type": "topic", "color": "#415bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/MavlinkTunnel.msg"}, {"id": "t_rover_rate_setpoint", "name": "rover_rate_setpoint", "type": "topic", "color": "#4e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#7641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#d8419c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_aux_global_position", "name": "aux_global_position", "type": "topic", "color": "#d84196", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource2d.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d8414c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#48d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#42d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d894", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#6541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#8741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#a341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#d88a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#d89041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_iridiumsbd_status", "name": "iridiumsbd_status", "type": "topic", "color": "#d89641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_obstacle_distance", "name": "obstacle_distance", "type": "topic", "color": "#41d883", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ObstacleDistance.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#41d89f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#41d8b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#d841b2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_hygrometer", "name": "sensor_hygrometer", "type": "topic", "color": "#d8415d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#d85741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#d85d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#afd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#8cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro_fifo", "name": "sensor_gyro_fifo", "type": "topic", "color": "#41d8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#41d3d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#41a5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#8c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#d8418a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d84641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#d89c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#d8b241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#d8c341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#41d85b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos", "name": "actuator_servos", "type": "topic", "color": "#41d889", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#41d8ab", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#419fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4144d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#8141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d841ad", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#d84179", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#c5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d872", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#41d8bc", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#4183d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#416cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#5f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#9d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#c041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d841c9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#d841be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#d87f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#87d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#41d87d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d8b0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41c1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#4178d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#4841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#d8a741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#d8be41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#4ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#41d844", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#41d89a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#41cdd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d84c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#d8d441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#a3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#7bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#41d878", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pps_capture", "name": "pps_capture", "type": "topic", "color": "#4172d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#d841b8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#d87441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_uwb", "name": "sensor_uwb", "type": "topic", "color": "#d8b841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#9dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#41b6d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#7b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#9241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#d841a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#d84190", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d87941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d8d3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#41d8cd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#d141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#d8417f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#4241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#41d855", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}, {"id": "t_rpm", "name": "rpm", "type": "topic", "color": "#a9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}], "links": [{"source": "m_voxl2_io", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#4841d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_sht3x", "target": "t_sensor_hygrometer", "color": "#d8415d", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#5f41d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#4161d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#4841d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#cbd841", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#41d8bc", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#d89c41", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#9dd841", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#5f41d8", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#4841d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#41d844", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_pwm_input", "color": "#d84190", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_rpm", "color": "#a9d841", "style": "dashed"}, {"source": "m_ll40ls_pwm", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_mb12xx", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_obstacle_distance_fused", "color": "#d841cf", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_attitude", "color": "#41d3d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_obstacle_distance", "color": "#41d883", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_pga460", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_leddar_one", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_afbrs50", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_gy_us42", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_srf02", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_srf05", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_mappydot", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#41d8bc", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#9dd841", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#d89c41", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_gps", "color": "#9dd841", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_selection", "color": "#afd841", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_vectornav", "target": "t_estimator_status", "color": "#d86841", "style": "dashed"}, {"source": "m_cyphal", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_cyphal", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_lsm9ds1_mag", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_bmm350", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#9241d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#d8be41", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#9241d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_ms4515", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_auav", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_auav", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_asp5033", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_ets_airspeed", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#41d8b0", "style": "dashed"}, {"source": "m_pps_capture", "target": "t_pps_capture", "color": "#4172d8", "style": "dashed"}, {"source": "m_rpi_rc_in", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#d84190", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_iridiumsbd", "target": "t_iridiumsbd_status", "color": "#d89641", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_gps_inject_data", "color": "#d89c41", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_ina220", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_voxlpm", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_tattu_can", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_pcf8583", "target": "t_rpm", "color": "#a9d841", "style": "dashed"}, {"source": "m_rpm_simulator", "target": "t_rpm", "color": "#a9d841", "style": "dashed"}, {"source": "m_sagetech_mxs", "target": "t_transponder_report", "color": "#48d841", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_uwb_sr150", "target": "t_sensor_uwb", "color": "#d8b841", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_tcbp001ta", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_mpl3115a2", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_lps25h", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_ms5837", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_actuator_test", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_tests", "target": "t_dataman_request", "color": "#8141d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_failure", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#d841b2", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#41d89f", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#41d8ab", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#65d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#d86341", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#41d8c1", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#98d841", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84185", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_torque_setpoint", "color": "#9841d8", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#d8417f", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d84c41", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#afd841", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#42d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4144d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#a341d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d87941", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#4166d8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#d841b8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#d88a41", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#92d841", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d894", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#d87f41", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#6541d8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d841c9", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#4241d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#d85241", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41c1d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#41d8a5", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#c041d8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#d8cf41", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#87d841", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#7bd841", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84185", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#9841d8", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8c7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#41d3d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#41c7d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#70d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#d86841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#a941d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#5fd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#41d855", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d6d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#afd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#8cd841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#41d8b6", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#c5d841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#92d841", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_position_setpoint", "color": "#6a41d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_steering_setpoint", "color": "#7041d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_throttle_setpoint", "color": "#5341d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_rate_setpoint", "color": "#4e41d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_attitude_setpoint", "color": "#41d86c", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_velocity_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_visual_odometry", "color": "#59d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_global_position_groundtruth", "color": "#4194d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_local_position_groundtruth", "color": "#c541d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#41d866", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_attitude_groundtruth", "color": "#c0d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_irlock_report", "color": "#41d8b0", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_rpm", "color": "#a9d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84146", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#4194d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#41d866", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#c541d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d87941", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#c0d841", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#9dd841", "style": "dashed"}, {"source": "m_sensor_airspeed_sim", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_system_power_simulator", "target": "t_system_power", "color": "#d8be41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_attitude_status", "color": "#d86341", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_esc_status", "color": "#d87441", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_visual_odometry", "color": "#59d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_global_position_groundtruth", "color": "#4194d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_local_position_groundtruth", "color": "#c541d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#41d866", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_obstacle_distance", "color": "#41d883", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_attitude_groundtruth", "color": "#c0d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_information", "color": "#d84157", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gps", "color": "#9dd841", "style": "dashed"}, {"source": "m_sensor_agp_sim", "target": "t_aux_global_position", "color": "#d84196", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#41a5d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#4183d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#41d87d", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d841a1", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#414ad8", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#8741d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#d841be", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d84163", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#41d850", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#d8419c", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d8414c", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#5941d8", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#92d841", "style": "dashed"}, {"source": "m_internal_combustion_engine_control", "target": "t_internal_combustion_engine_control", "color": "#d8ad41", "style": "dashed"}, {"source": "m_internal_combustion_engine_control", "target": "t_internal_combustion_engine_status", "color": "#41d88e", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_steering_setpoint", "color": "#7041d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_position_setpoint", "color": "#6a41d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_throttle_setpoint", "color": "#5341d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_rate_setpoint", "color": "#4e41d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_attitude_setpoint", "color": "#41d86c", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_velocity_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#b4d841", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d1d841", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d84163", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#8c41d8", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#92d841", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#41b0d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d84168", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#70d841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#d86841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#d6d841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_odometry", "color": "#8cd841", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d8c941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d8d3", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d84641", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro_fifo", "color": "#41d8d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#41d3d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#81d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#8141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#7b41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#70d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#6ad841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#d85d41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#d86341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#41b6d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#9d41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d86e41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d87941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#b441d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#41abd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#419ad8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#d88541", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#59d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#418ed8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#53d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#4178d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#d89c41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#48d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#d141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#d8a741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#d841d4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#41d85b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#41d861", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#d8c341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_esc_serial_passthru", "color": "#415bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#4155d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#41d878", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#4150d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#d8d441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_obstacle_distance", "color": "#41d883", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d6d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#d8419c", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#d8418a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#4241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#b4d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#41d8b0", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d84163", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#d84157", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#9dd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#92d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84146", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#ba41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#d84141", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#bad841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#d84174", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#41cdd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#4189d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#41d8b6", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#76d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#417dd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#4ed841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#cb41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#41d850", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#c5d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#8141d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#d85741", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#d87f41", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#d89041", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#d8a141", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#48d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#d141d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#d8b241", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d641d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d841c9", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d872", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#d841a7", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d6d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#414ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#d84179", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#d84152", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d8c941", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84185", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#7641d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#41d8b6", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#41bcd8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#d84163", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#9841d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#c5d841", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84185", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d84163", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#af41d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#9841d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_motors", "color": "#419fd8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_position_setpoint", "color": "#6a41d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_steering_setpoint", "color": "#7041d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_throttle_setpoint", "color": "#5341d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_rate_setpoint", "color": "#4e41d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_attitude_setpoint", "color": "#41d86c", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_velocity_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_servos", "color": "#41d889", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_position_controller_status", "color": "#af41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#4ed841", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#d8419c", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d8414c", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d841c9", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#d841c3", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d841ad", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#4ed841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#416cd8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8c7", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#a3d841", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#41d89a", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#41d84a", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#41d8cd", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#41d3d8", "style": "dashed"}, {"source": "t_actuator_motors", "target": "m_voxl2_io", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl2_io", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl2_io", "color": "#d841c3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl2_io", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl2_io", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl2_io", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl2_io", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl2_io", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl2_io", "color": "#41d87d", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl2_io", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl2_io", "color": "#41d894", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#4183d8", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_capture", "color": "#4172d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d841ad", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#70d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#41b0d8", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#41abd8", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#d87f41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#419fd8", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#d88541", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#53d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#4ed841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#d89c41", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_uavcan", "color": "#d8ad41", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#41d87d", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#414ad8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d894", "style": "normal"}, {"source": "t_gripper", "target": "m_uavcan", "color": "#d8417f", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#41d89a", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#41d8ab", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#a3d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#d89c41", "style": "normal"}, {"source": "t_battery_status", "target": "m_atxxxx", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_atxxxx", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_atxxxx", "color": "#70d841", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d8d3", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#d87f41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#41d3d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#8741d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#70d841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d6d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#70d841", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_trigger", "color": "#4172d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d841ad", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d841c9", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_px4io", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#4183d8", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#41d8ab", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_px4io", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#41d87d", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#41d844", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#41d894", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_linux_pwm_out", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_linux_pwm_out", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_linux_pwm_out", "color": "#d841c3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_linux_pwm_out", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_linux_pwm_out", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_linux_pwm_out", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_linux_pwm_out", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_linux_pwm_out", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_linux_pwm_out", "color": "#41d87d", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_linux_pwm_out", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_linux_pwm_out", "color": "#41d894", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#d8a741", "style": "normal"}, {"source": "t_pwm_input", "target": "m_ll40ls_pwm", "color": "#d84190", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_lightware_sf45_serial", "color": "#41d3d8", "style": "normal"}, {"source": "t_obstacle_distance", "target": "m_lightware_sf45_serial", "color": "#41d883", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_lightware_sf45_serial", "color": "#d8c341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d841c9", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#d8a141", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_dshot", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d841ad", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#41d8ab", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_dshot", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#41d87d", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d894", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#41d89a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d841ad", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#9241d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#9d41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#4183d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#d89c41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_cyphal", "color": "#41d87d", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_cyphal", "color": "#9dd841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cyphal", "color": "#4183d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_roboclaw", "color": "#4183d8", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#9241d8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_pca9685_pwm_out", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#d841c3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pca9685_pwm_out", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#41d87d", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#41d894", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_pps_capture", "color": "#9dd841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_voxl_esc", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl_esc", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl_esc", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxl_esc", "color": "#d841c9", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl_esc", "color": "#41b0d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_voxl_esc", "color": "#41d8a5", "style": "normal"}, {"source": "t_esc_serial_passthru", "target": "m_voxl_esc", "color": "#415bd8", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl_esc", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl_esc", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl_esc", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl_esc", "color": "#4ed841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl_esc", "color": "#41d87d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl_esc", "color": "#d8ad41", "style": "normal"}, {"source": "t_led_control", "target": "m_voxl_esc", "color": "#a3d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxl_esc", "color": "#4166d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl_esc", "color": "#41d894", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_vertiq_io", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_vertiq_io", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_vertiq_io", "color": "#d841c3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_vertiq_io", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vertiq_io", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_vertiq_io", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_vertiq_io", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_vertiq_io", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_vertiq_io", "color": "#41d87d", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_vertiq_io", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_vertiq_io", "color": "#41d894", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#d87f41", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#9d41d8", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#d87441", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d87941", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#70d841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#d6d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#9d41d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d841c9", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#d841c9", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina220", "color": "#d841c9", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina220", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxlpm", "color": "#d841c9", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxlpm", "color": "#4166d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#4183d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#d841c9", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_sagetech_mxs", "color": "#d841c9", "style": "normal"}, {"source": "t_transponder_report", "target": "m_sagetech_mxs", "color": "#48d841", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_sagetech_mxs", "color": "#9dd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_sagetech_mxs", "color": "#414ad8", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#d841ad", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#9d41d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#a3d841", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#a3d841", "style": "normal"}, {"source": "t_led_control", "target": "m_neopixel", "color": "#a3d841", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_pwm", "color": "#a3d841", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#a3d841", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#a3d841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_tap_esc", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_tap_esc", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_tap_esc", "color": "#d841c3", "style": "normal"}, {"source": "t_tune_control", "target": "m_tap_esc", "color": "#41d89a", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_tap_esc", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_tap_esc", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_tap_esc", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_tap_esc", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_tap_esc", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_tap_esc", "color": "#41d87d", "style": "normal"}, {"source": "t_led_control", "target": "m_tap_esc", "color": "#a3d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_tap_esc", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_tap_esc", "color": "#41d894", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#d841c3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#41d87d", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d894", "style": "normal"}, {"source": "t_sensor_uwb", "target": "m_uwb_sr150", "color": "#d8b841", "style": "normal"}, {"source": "t_input_rc", "target": "m_tests", "color": "#41d8d3", "style": "normal"}, {"source": "t_dataman_response", "target": "m_tests", "color": "#8c41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_i2c_launcher", "color": "#d841c9", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_io_bypass_control", "color": "#41a5d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_microbench", "color": "#70d841", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_microbench", "color": "#41d8d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_microbench", "color": "#41d878", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_microbench", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_failure", "color": "#41d84a", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_template_module", "color": "#4144d8", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#d84157", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#41d3d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#d841c3", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#81d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d841ad", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#4150d8", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#d86341", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d6d841", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#d84152", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#414ad8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airship_att_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_airship_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#d841ad", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#41d861", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#5fd841", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#d88a41", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#7b41d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d84c41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#41d8a5", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#afd841", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#41d878", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#9241d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#42d841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#d8a741", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#b441d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d841c9", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#d88a41", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#41d878", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#ba41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#41d3d8", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#4189d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#414ad8", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#70d841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#8741d8", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#417dd8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#41d855", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#c5d841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#7b41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d841ad", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#41d878", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#d8d441", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d841c9", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#bad841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#70d841", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d8c941", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#8741d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#d84163", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#414ad8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#6541d8", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#87d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#41d3d8", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#7641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#7b41d8", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#41c7d8", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#d85741", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#70d841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#8741d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#d86841", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#9d41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#a341d8", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#d87441", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#a941d8", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#b441d8", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#d87f41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#419fd8", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#5fd841", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#d88a41", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#d89041", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#418ed8", "style": "normal"}, {"source": "t_iridiumsbd_status", "target": "m_commander", "color": "#d89641", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#4183d8", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#416cd8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#41d84a", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#d8a741", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#d8b241", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#42d841", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d841c9", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#d8be41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#d841c3", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#d8c341", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d841ad", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d872", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#41d878", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#d8d441", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d6d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#414ad8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#d8418a", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#d84190", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#4241d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#4841d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#afd841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8c7", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#41d8cd", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#9dd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d841c9", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#41d85b", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d841ad", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#9d41d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d841c9", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#d87441", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d841c9", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#9241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#4166d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#d84163", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#92d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8c7", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d8d3", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#d85d41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#59d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#d8c341", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d84c41", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#b4d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d841ad", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#8741d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#afd841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#cb41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#a341d8", "style": "normal"}, {"source": "t_aux_global_position", "target": "m_ekf2", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#414ad8", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d87941", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4144d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#8741d8", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#414ad8", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#92d841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_differential", "color": "#419fd8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_differential", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_differential", "color": "#41d3d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_differential", "color": "#7041d8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_differential", "color": "#6a41d8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_differential", "color": "#418ed8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_differential", "color": "#5341d8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_differential", "color": "#41d86c", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_differential", "color": "#41d8a5", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_differential", "color": "#d8416e", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_differential", "color": "#4e41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_differential", "color": "#70d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_differential", "color": "#d8419c", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_differential", "color": "#d84152", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#4194d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#c0d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_simulator", "color": "#d841c9", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_simulator", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_battery_simulator", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_mavlink", "color": "#41a5d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_simulator_mavlink", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_simulator_mavlink", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_mavlink", "color": "#d841a1", "style": "normal"}, {"source": "t_battery_status", "target": "m_simulator_mavlink", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#4194d8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#41a5d8", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#4194d8", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#c541d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#4194d8", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#c541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_sensor_airspeed_sim", "color": "#41d3d8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_gz_bridge", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_gz_bridge", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gz_bridge", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gz_bridge", "color": "#d841ad", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_gz_bridge", "color": "#41d8ab", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_gz_bridge", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_gz_bridge", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_gz_bridge", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_gz_bridge", "color": "#41d87d", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_gz_bridge", "color": "#65d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_gz_bridge", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_gz_bridge", "color": "#41d894", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_agp_sim", "color": "#4194d8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#419fd8", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#d8417f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#d841c3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#41d8ab", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#4183d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#4ed841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out_sim", "color": "#d8ad41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#41d87d", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#41b0d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d894", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#41d84a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84185", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#41d8a5", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#4183d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#afd841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#70d841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#8741d8", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#42d841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d6d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#d8419c", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#d84152", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84185", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#41d3d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#d841b8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#70d841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#cb41d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#d86841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#414ad8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#a941d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d87941", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#70d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#414ad8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d8414c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#414ad8", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#92d841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#7b41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_internal_combustion_engine_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_internal_combustion_engine_control", "color": "#d841c3", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_internal_combustion_engine_control", "color": "#419fd8", "style": "normal"}, {"source": "t_rpm", "target": "m_internal_combustion_engine_control", "color": "#a9d841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_mecanum", "color": "#419fd8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_mecanum", "color": "#d841c3", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_mecanum", "color": "#7041d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_mecanum", "color": "#41d3d8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_mecanum", "color": "#6a41d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_mecanum", "color": "#5341d8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_mecanum", "color": "#418ed8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_mecanum", "color": "#41d8a5", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_mecanum", "color": "#4e41d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_mecanum", "color": "#d8416e", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_mecanum", "color": "#41d86c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_mecanum", "color": "#70d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_mecanum", "color": "#d8419c", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_mecanum", "color": "#d84152", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#70d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#41d3d8", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d8b0", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#d86341", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#41d3d8", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#5f41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d6d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#70d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#41d3d8", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#8141d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#70d841", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d8c941", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d84163", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#414ad8", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84185", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#41d8a5", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#41d8b6", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#41bcd8", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#d8cf41", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#9841d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8c7", "style": "normal"}, {"source": "t_rpm", "target": "m_control_allocator", "color": "#a9d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#c5d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#59d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#d8c341", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#b4d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#4183d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#70d841", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#d84146", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#414ad8", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#4144d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#d841c3", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#d84141", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d84641", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#d85241", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d84c41", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#d86341", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#d86841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#d87441", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d86e41", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d87941", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#d87f41", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#d89041", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#d88a41", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#d89c41", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#d8b241", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#d8c341", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d8c941", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#d8d441", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d1d841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d6d841", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#cbd841", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#c0d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#b4d841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#afd841", "style": "normal"}, {"source": "t_rpm", "target": "m_mavlink", "color": "#a9d841", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#9dd841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#92d841", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#98d841", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#8cd841", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#7bd841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#70d841", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#6ad841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#65d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#5fd841", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#48d841", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#42d841", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#41d84a", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#41d850", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#41d866", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41d872", "style": "normal"}, {"source": "t_internal_combustion_engine_status", "target": "m_mavlink", "color": "#41d88e", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#41d89f", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#41d8a5", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#41d8bc", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#41d8c1", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d8c7", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#41d8cd", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d8d3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#41d3d8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#41cdd8", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41c1d8", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#41b6d8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#41a5d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#4194d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#4183d8", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#4178d8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#4161d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#414ad8", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#4241d8", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#5f41d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#7b41d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#8741d8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#8c41d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#9d41d8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#a941d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#af41d8", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#b441d8", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#c541d8", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#d141d8", "style": "normal"}, {"source": "t_obstacle_distance_fused", "target": "m_mavlink", "color": "#d841cf", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#d841c3", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#d841b2", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#d841b8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d841ad", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d84185", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d84163", "style": "normal"}, {"source": "t_sensor_hygrometer", "target": "m_mavlink", "color": "#d8415d", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#d84157", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#d84152", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d841ad", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#70d841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#8741d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d6d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#d8419c", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#d84152", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#414ad8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d841c9", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#d84179", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#d87f41", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#d84174", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#b4d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d841ad", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#70d841", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#8c41d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#48d841", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d6d841", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#d141d8", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#414ad8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#af41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#9841d8", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#5941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#41d3d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#8741d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#70d841", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#d87f41", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#419ad8", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#416cd8", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#41d850", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d841c9", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#d841b8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d841ad", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#4155d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#414ad8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#d84152", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#70d841", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#d84163", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#d6d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#d8419c", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#d84152", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_gyro_fft", "color": "#afd841", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_gyro_fft", "color": "#41d8d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_gyro_fft", "color": "#42d841", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_fft", "color": "#41d878", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_ackermann", "color": "#419fd8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_ackermann", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_ackermann", "color": "#41d3d8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_ackermann", "color": "#6a41d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_ackermann", "color": "#7041d8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_ackermann", "color": "#418ed8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_ackermann", "color": "#4e41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_ackermann", "color": "#41d8a5", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_ackermann", "color": "#41d86c", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_ackermann", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_ackermann", "color": "#70d841", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_ackermann", "color": "#5341d8", "style": "normal"}, {"source": "t_actuator_servos", "target": "m_rover_ackermann", "color": "#41d889", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_ackermann", "color": "#d8419c", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_ackermann", "color": "#d84152", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_rover_ackermann", "color": "#af41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d841c9", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#41d8a5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d841ad", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#70d841", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d84163", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#414ad8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8c7", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d841c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#d841c3", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#416cd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d841ad", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#c041d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#9d41d8", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#41d8cd", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#41d3d8", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#59d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#70d841", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d84146", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#4144d8", "style": "normal"}]} \ No newline at end of file diff --git a/docs/public/middleware/graph_full_no_mavlink.json b/docs/public/middleware/graph_full_no_mavlink.json index 0aa5bd90a632..eaf719b975d5 100644 --- a/docs/public/middleware/graph_full_no_mavlink.json +++ b/docs/public/middleware/graph_full_no_mavlink.json @@ -1 +1 @@ -{"nodes": [{"id": "m_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_system_power_simulator", "name": "system_power_simulator", "type": "Module", "color": "#666666"}, {"id": "m_lightware_sf45_serial", "name": "lightware_sf45_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_airship_att_control", "name": "airship_att_control", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_sensor_airspeed_sim", "name": "sensor_airspeed_sim", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rover_differential", "name": "rover_differential", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_simulator", "name": "battery_simulator", "type": "Module", "color": "#666666"}, {"id": "m_simulator_mavlink", "name": "simulator_mavlink", "type": "Module", "color": "#666666"}, {"id": "m_io_bypass_control", "name": "io_bypass_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_rover_ackermann", "name": "rover_ackermann", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_template_module", "name": "template_module", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_agp_sim", "name": "sensor_agp_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_linux_pwm_out", "name": "linux_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_rpm_simulator", "name": "rpm_simulator", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_rover_mecanum", "name": "rover_mecanum", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_ets_airspeed", "name": "ets_airspeed", "type": "Module", "color": "#666666"}, {"id": "m_sagetech_mxs", "name": "sagetech_mxs", "type": "Module", "color": "#666666"}, {"id": "m_i2c_launcher", "name": "i2c_launcher", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250_i2c", "name": "mpu9250_i2c", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1_mag", "name": "lsm9ds1_mag", "type": "Module", "color": "#666666"}, {"id": "m_pps_capture", "name": "pps_capture", "type": "Module", "color": "#666666"}, {"id": "m_rpm_capture", "name": "rpm_capture", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_leddar_one", "name": "leddar_one", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls_pwm", "name": "ll40ls_pwm", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_bmi088_i2c", "name": "bmi088_i2c", "type": "Module", "color": "#666666"}, {"id": "m_iam20680hp", "name": "iam20680hp", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_pwm", "name": "rgbled_pwm", "type": "Module", "color": "#666666"}, {"id": "m_iridiumsbd", "name": "iridiumsbd", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_uavcannode", "name": "uavcannode", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_microbench", "name": "microbench", "type": "Module", "color": "#666666"}, {"id": "m_vertiq_io", "name": "vertiq_io", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_mpl3115a2", "name": "mpl3115a2", "type": "Module", "color": "#666666"}, {"id": "m_tcbp001ta", "name": "tcbp001ta", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_adis16470", "name": "adis16470", "type": "Module", "color": "#666666"}, {"id": "m_adis16477", "name": "adis16477", "type": "Module", "color": "#666666"}, {"id": "m_adis16497", "name": "adis16497", "type": "Module", "color": "#666666"}, {"id": "m_adis16507", "name": "adis16507", "type": "Module", "color": "#666666"}, {"id": "m_icm20608g", "name": "icm20608g", "type": "Module", "color": "#666666"}, {"id": "m_icm40609d", "name": "icm40609d", "type": "Module", "color": "#666666"}, {"id": "m_icm42670p", "name": "icm42670p", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_vectornav", "name": "vectornav", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_rpi_rc_in", "name": "rpi_rc_in", "type": "Module", "color": "#666666"}, {"id": "m_tattu_can", "name": "tattu_can", "type": "Module", "color": "#666666"}, {"id": "m_uwb_sr150", "name": "uwb_sr150", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_gz_bridge", "name": "gz_bridge", "type": "Module", "color": "#666666"}, {"id": "m_voxl_esc", "name": "voxl_esc", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_mappydot", "name": "mappydot", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_icm20689", "name": "icm20689", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_icm42605", "name": "icm42605", "type": "Module", "color": "#666666"}, {"id": "m_icm45686", "name": "icm45686", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_iim42653", "name": "iim42653", "type": "Module", "color": "#666666"}, {"id": "m_neopixel", "name": "neopixel", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_roboclaw", "name": "roboclaw", "type": "Module", "color": "#666666"}, {"id": "m_voxl2_io", "name": "voxl2_io", "type": "Module", "color": "#666666"}, {"id": "m_gyro_fft", "name": "gyro_fft", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_asp5033", "name": "asp5033", "type": "Module", "color": "#666666"}, {"id": "m_afbrs50", "name": "afbrs50", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_gy_us42", "name": "gy_us42", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_mpu6000", "name": "mpu6000", "type": "Module", "color": "#666666"}, {"id": "m_mpu6500", "name": "mpu6500", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250", "name": "mpu9250", "type": "Module", "color": "#666666"}, {"id": "m_lsm303d", "name": "lsm303d", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1", "name": "lsm9ds1", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_pcf8583", "name": "pcf8583", "type": "Module", "color": "#666666"}, {"id": "m_tap_esc", "name": "tap_esc", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_failure", "name": "failure", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_lps25h", "name": "lps25h", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ms5837", "name": "ms5837", "type": "Module", "color": "#666666"}, {"id": "m_cyphal", "name": "cyphal", "type": "Module", "color": "#666666"}, {"id": "m_ms4515", "name": "ms4515", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_mb12xx", "name": "mb12xx", "type": "Module", "color": "#666666"}, {"id": "m_pga460", "name": "pga460", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi055", "name": "bmi055", "type": "Module", "color": "#666666"}, {"id": "m_bmi085", "name": "bmi085", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_bmi270", "name": "bmi270", "type": "Module", "color": "#666666"}, {"id": "m_sch16t", "name": "sch16t", "type": "Module", "color": "#666666"}, {"id": "m_l3gd20", "name": "l3gd20", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_bmm350", "name": "bmm350", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_atxxxx", "name": "atxxxx", "type": "Module", "color": "#666666"}, {"id": "m_ina220", "name": "ina220", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_voxlpm", "name": "voxlpm", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_srf02", "name": "srf02", "type": "Module", "color": "#666666"}, {"id": "m_srf05", "name": "srf05", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_tests", "name": "tests", "type": "Module", "color": "#666666"}, {"id": "m_auav", "name": "auav", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#ced841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "topic", "color": "#41d863", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8ac", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#41d1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#d84191", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d89941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#85d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d8418a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#52d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#41d88f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#c741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#8cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d84f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#41cad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#c0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#7ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#4ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#41c2d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#ce41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#a241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#94d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#6fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d896", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_attitude_setpoint", "name": "rover_attitude_setpoint", "type": "topic", "color": "#419ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_position_setpoint", "name": "rover_position_setpoint", "type": "topic", "color": "#4196d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_steering_setpoint", "name": "rover_steering_setpoint", "type": "topic", "color": "#4187d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_throttle_setpoint", "name": "rover_throttle_setpoint", "type": "topic", "color": "#4180d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_velocity_setpoint", "name": "rover_velocity_setpoint", "type": "topic", "color": "#4179d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84165", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d8415e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84157", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#aad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d84199", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d84183", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#d8d341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#b8d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d841a0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d86541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d87441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841c5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_aux_global_position", "name": "aux_global_position", "type": "topic", "color": "#d8a041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource2d.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d887", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_rate_setpoint", "name": "rover_rate_setpoint", "type": "topic", "color": "#418fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#6841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#aa41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841d3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841cc", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8414f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#d89141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d880", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#41bbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#7e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#b141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d841a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_iridiumsbd_status", "name": "iridiumsbd_status", "type": "topic", "color": "#41d86a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_obstacle_distance", "name": "obstacle_distance", "type": "topic", "color": "#41d8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ObstacleDistance.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#4163d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#8541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d85e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8cc41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#b1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41d8d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro_fifo", "name": "sensor_gyro_fifo", "type": "topic", "color": "#5941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#6f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#c041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos", "name": "actuator_servos", "type": "topic", "color": "#d86d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8c541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#d6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#68d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#60d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#59d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d8a741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8af41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#9bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#76d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d8ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#9441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d8416d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d854", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d871", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8a5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#415bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d879", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#41a5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#4154d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#8c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#b841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41d89e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pps_capture", "name": "pps_capture", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#414dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#5241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#9b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841af", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d84174", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d88341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#c7d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#416ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#4a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#6041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_uwb", "name": "sensor_uwb", "type": "topic", "color": "#7641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#41acd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d88a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d85b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#41d84d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d8c2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#a2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84148", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}, {"id": "t_rpm", "name": "rpm", "type": "topic", "color": "#4171d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}], "links": [{"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#d88341", "style": "dashed"}, {"source": "m_afbrs50", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84165", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415e", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#d89141", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_asp5033", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#c041d8", "style": "dashed"}, {"source": "m_auav", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_auav", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_bmm350", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d88341", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#8c41d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d8af41", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8af41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#a2d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#9bd841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#94d841", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d854", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#41bbd8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841c5", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d8416d", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d87441", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8b641", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_cyphal", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_cyphal", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8cc41", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#c0d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#b8d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#b1d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#aad841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#6f41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#c041d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841bd", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d84199", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84148", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_ets_airspeed", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_failure", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d879", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#aa41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841cc", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d880", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d8417b", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d89941", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#6fd841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#9b41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#8cd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#85d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#7ed841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#76d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d879", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#41d88f", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d896", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8ac", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#41d1d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#8541d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d8418a", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#76d841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#8541d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d8417b", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#59d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#52d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#43d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d845", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#4a41d8", "style": "dashed"}, {"source": "m_gy_us42", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_attitude_status", "color": "#52d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_information", "color": "#4ad841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_obstacle_distance", "color": "#41d8d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gps", "color": "#4a41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_optical_flow", "color": "#6841d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_attitude_groundtruth", "color": "#c741d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_global_position_groundtruth", "color": "#d841b6", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_local_position_groundtruth", "color": "#d84191", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_visual_odometry", "color": "#d84157", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_ina220", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_internal_combustion_engine_control", "target": "t_internal_combustion_engine_control", "color": "#41d863", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_iridiumsbd", "target": "t_iridiumsbd_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#41d871", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d841a0", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d887", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_leddar_one", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_obstacle_distance", "color": "#41d8d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_attitude", "color": "#c041d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_ll40ls_pwm", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8bd41", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#b1d841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#d841bd", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#d84199", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8a5", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_lps25h", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_lsm9ds1_mag", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d879", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8b4", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8bb", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d8416d", "style": "dashed"}, {"source": "m_mappydot", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_mb12xx", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d8417b", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d89941", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#9441d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#aa41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#ce41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841cc", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d8418a", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d84f41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d8417b", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_mpl3115a2", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_ms4515", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_ms5837", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8c541", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#ced841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#68d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#60d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d854", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d8c2", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d8ca", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41d8d1", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#41c2d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#416ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#4163d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#b141d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841bd", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d841a0", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d84174", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d8416d", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#6841d8", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#6841d8", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#41d84d", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_pcf8583", "target": "t_rpm", "color": "#4171d8", "style": "dashed"}, {"source": "m_pga460", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#6841d8", "style": "dashed"}, {"source": "m_pps_capture", "target": "t_pps_capture", "color": "#41b4d8", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#41acd8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d86541", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#6841d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#41a5d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#415bd8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8bb", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_position_controller_status", "color": "#41cad8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_attitude_setpoint", "color": "#419ed8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_position_setpoint", "color": "#4196d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_rate_setpoint", "color": "#418fd8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_steering_setpoint", "color": "#4187d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_throttle_setpoint", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_velocity_setpoint", "color": "#4179d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_attitude_setpoint", "color": "#419ed8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_position_setpoint", "color": "#4196d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_rate_setpoint", "color": "#418fd8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_steering_setpoint", "color": "#4187d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_throttle_setpoint", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_velocity_setpoint", "color": "#4179d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_attitude_setpoint", "color": "#419ed8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_position_setpoint", "color": "#4196d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_rate_setpoint", "color": "#418fd8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_steering_setpoint", "color": "#4187d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_throttle_setpoint", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_velocity_setpoint", "color": "#4179d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#41cad8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#ce41d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84165", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415e", "style": "dashed"}, {"source": "m_rpi_rc_in", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_pwm_input", "color": "#41acd8", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_rpm", "color": "#4171d8", "style": "dashed"}, {"source": "m_rpm_simulator", "target": "t_rpm", "color": "#4171d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#415bd8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_sagetech_mxs", "target": "t_transponder_report", "color": "#b141d8", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_sensor_agp_sim", "target": "t_aux_global_position", "color": "#d8a041", "style": "dashed"}, {"source": "m_sensor_airspeed_sim", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#4a41d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d88a41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4145d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#6f41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#7e41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841af", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d841a7", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#41d845", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#4a41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_differential_pressure", "color": "#d8d341", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_irlock_report", "color": "#41d871", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_rpm", "color": "#4171d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_optical_flow", "color": "#6841d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_attitude_groundtruth", "color": "#c741d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_global_position_groundtruth", "color": "#d841b6", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_local_position_groundtruth", "color": "#d84191", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84183", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84157", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d88a41", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#4154d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro_fifo", "color": "#5941d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#c741d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d841b6", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#d84191", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_srf02", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_srf05", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_system_power_simulator", "target": "t_system_power", "color": "#8c41d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_tattu_can", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_tcbp001ta", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#4341d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_tests", "target": "t_dataman_request", "color": "#d8c541", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#6841d8", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#415bd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_gps_inject_data", "color": "#41d845", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_led_control", "color": "#41d89e", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_tune_control", "color": "#b841d8", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84165", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415e", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#ce41d8", "style": "dashed"}, {"source": "m_uwb_sr150", "target": "t_sensor_uwb", "color": "#7641d8", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d641d8", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#6041d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_estimator_status", "color": "#b1d841", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_baro", "color": "#414dd8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_gps", "color": "#4a41d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_selection", "color": "#6f41d8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#d6d841", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_input_rc", "color": "#41d85b", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_armed", "color": "#d84841", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_motors", "color": "#d85741", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_outputs", "color": "#d85e41", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_servos", "color": "#d86d41", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_test", "color": "#d87b41", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_esc_status", "color": "#c7d841", "style": "dashed"}, {"source": "m_voxlpm", "target": "t_battery_status", "color": "#d8a741", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#76d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#8541d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#a241d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#ce41d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84165", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415e", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8414f", "style": "dashed"}, {"source": "t_manual_control_setpoint", "target": "m_airship_att_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airship_att_control", "color": "#d8416d", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d88a41", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#c0d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#b1d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#6fd841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d896", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#9b41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84165", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#4145d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d84183", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#d84157", "style": "normal"}, {"source": "t_battery_status", "target": "m_atxxxx", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_atxxxx", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_atxxxx", "color": "#d8416d", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_simulator", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_battery_simulator", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_simulator", "color": "#d8416d", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d88341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d8416d", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d88341", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#c041d8", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_capture", "color": "#41b4d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d641d8", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8af41", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#52d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d841bd", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_trigger", "color": "#41b4d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d84199", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d84841", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#d89141", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d8a741", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8bd41", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#d8d341", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#d6d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#c7d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#c0d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#b8d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#b1d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#aad841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#a2d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#68d841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d854", "style": "normal"}, {"source": "t_iridiumsbd_status", "target": "m_commander", "color": "#41d86a", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8a5", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8b4", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8bb", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d8ca", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41d8d1", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#41bbd8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#41acd8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#4163d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#415bd8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#4154d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#414dd8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#6041d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#6f41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#7e41d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#8c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d8416d", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8414f", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84148", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#94d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#76d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8bb", "style": "normal"}, {"source": "t_rpm", "target": "m_control_allocator", "color": "#4171d8", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#8541d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#a241d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84165", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d8415e", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#d8416d", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cyphal", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_cyphal", "color": "#d87b41", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_cyphal", "color": "#4a41d8", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_dshot", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_dshot", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#d8416d", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d88a41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#d89141", "style": "normal"}, {"source": "t_aux_global_position", "target": "m_ekf2", "color": "#d8a041", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#d6d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d887", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d896", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#6f41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#7e41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84157", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#c7d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_failure", "color": "#d841d3", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#9441d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#ce41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d8416d", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d8416d", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#d89141", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d89941", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#7ed841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#ce41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d8416d", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d8416d", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#d89141", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#8cd841", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#85d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#76d841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d88f", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8ac", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d8416d", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84148", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#d89141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8b4", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#41c2d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d8416d", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84148", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#d89141", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d8a741", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d8b641", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d8416d", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#d8a741", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#52d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#4ad841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8b4", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#41c2d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d84174", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d845", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#4154d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#5241d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d8416d", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_fft", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_gyro_fft", "color": "#5941d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_gyro_fft", "color": "#6f41d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_gyro_fft", "color": "#d841a7", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_gz_bridge", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_gz_bridge", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_gz_bridge", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_gz_bridge", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_gz_bridge", "color": "#59d841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_gz_bridge", "color": "#43d841", "style": "normal"}, {"source": "t_gripper", "target": "m_gz_bridge", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_gz_bridge", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_gz_bridge", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_gz_bridge", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gz_bridge", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gz_bridge", "color": "#d641d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#4154d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d88a41", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#d8a741", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#c7d841", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#41d854", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_i2c_launcher", "color": "#d8416d", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina220", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina220", "color": "#d8416d", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d8416d", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#d8416d", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#d8416d", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_internal_combustion_engine_control", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_internal_combustion_engine_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_rpm", "target": "m_internal_combustion_engine_control", "color": "#4171d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_internal_combustion_engine_control", "color": "#d8416d", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_io_bypass_control", "color": "#d85e41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#d89141", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d896", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#41c2d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#6f41d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#9441d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84165", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d871", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d84199", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#ced841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d8416d", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_lightware_sf45_serial", "color": "#d6d841", "style": "normal"}, {"source": "t_obstacle_distance", "target": "m_lightware_sf45_serial", "color": "#41d8d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_lightware_sf45_serial", "color": "#c041d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_linux_pwm_out", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_linux_pwm_out", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_linux_pwm_out", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_linux_pwm_out", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_linux_pwm_out", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_linux_pwm_out", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_linux_pwm_out", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_linux_pwm_out", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_linux_pwm_out", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_linux_pwm_out", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_linux_pwm_out", "color": "#d641d8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_ll40ls_pwm", "color": "#41acd8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#d84841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#d6d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#41d887", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#4145d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#d84183", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#d84157", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d8a741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d8416d", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#6041d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d8416d", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8bb", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d8416d", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d89941", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#ce41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d8416d", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d84f41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d8415e", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841cc", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d84199", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d8a741", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8b641", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d8416d", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_microbench", "color": "#9bd841", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_microbench", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_microbench", "color": "#5941d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_microbench", "color": "#d84199", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#d89141", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d8a741", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41d854", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d8416d", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8cc41", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#60d841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d854", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d887", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d8c2", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#41d1d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#41cad8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#416ad8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#b141d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d8416d", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84148", "style": "normal"}, {"source": "t_led_control", "target": "m_neopixel", "color": "#41d89e", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#d641d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pca9685_pwm_out", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pca9685_pwm_out", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#d641d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#d84841", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_pps_capture", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d641d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out_sim", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d641d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_px4io", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_px4io", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d8b4", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#41a5d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d8416d", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#d88341", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d8416d", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d85b", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8bb", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41d89e", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#41d89e", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#41d89e", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#41d89e", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_pwm", "color": "#41d89e", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_roboclaw", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_ackermann", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos", "target": "m_rover_ackermann", "color": "#d86d41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_ackermann", "color": "#41d8b4", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_rover_ackermann", "color": "#41cad8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_ackermann", "color": "#41c2d8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_ackermann", "color": "#419ed8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_ackermann", "color": "#4196d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_ackermann", "color": "#418fd8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_ackermann", "color": "#4187d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_ackermann", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_ackermann", "color": "#4179d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_ackermann", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_ackermann", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_ackermann", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_ackermann", "color": "#d84199", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_differential", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_differential", "color": "#41d8b4", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_differential", "color": "#41c2d8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_differential", "color": "#419ed8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_differential", "color": "#4196d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_differential", "color": "#418fd8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_differential", "color": "#4187d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_differential", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_differential", "color": "#4179d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_differential", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_differential", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_differential", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_differential", "color": "#d84199", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_mecanum", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_mecanum", "color": "#41d8b4", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_mecanum", "color": "#41c2d8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_mecanum", "color": "#419ed8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_mecanum", "color": "#4196d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_mecanum", "color": "#418fd8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_mecanum", "color": "#4187d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_mecanum", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_mecanum", "color": "#4179d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_mecanum", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_mecanum", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_mecanum", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_mecanum", "color": "#d84199", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#41c2d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#ce41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#d84199", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#d84841", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_sagetech_mxs", "color": "#4a41d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_sagetech_mxs", "color": "#b141d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_sagetech_mxs", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_sagetech_mxs", "color": "#d8416d", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d8a741", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8bd41", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#9bd841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_agp_sim", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_sensor_airspeed_sim", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#d84191", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d84191", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#c741d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841b6", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d88341", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#d8d341", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#b8d841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#4154d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#6041d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#6841d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#6f41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d841a7", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#41d845", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_mavlink", "color": "#d85e41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_mavlink", "color": "#d86541", "style": "normal"}, {"source": "t_battery_status", "target": "m_simulator_mavlink", "color": "#d8a741", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_simulator_mavlink", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_simulator_mavlink", "color": "#d8416d", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d85e41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d86541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_tap_esc", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_tap_esc", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_tap_esc", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_tap_esc", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_tap_esc", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_tap_esc", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_tap_esc", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_tap_esc", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_tap_esc", "color": "#41d880", "style": "normal"}, {"source": "t_led_control", "target": "m_tap_esc", "color": "#41d89e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_tap_esc", "color": "#41d8b4", "style": "normal"}, {"source": "t_tune_control", "target": "m_tap_esc", "color": "#b841d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_tap_esc", "color": "#d641d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#4154d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#414dd8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#6041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d641d8", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_template_module", "color": "#4145d8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_tests", "color": "#d8cc41", "style": "normal"}, {"source": "t_input_rc", "target": "m_tests", "color": "#41d85b", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#b841d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#59d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#41d845", "style": "normal"}, {"source": "t_gripper", "target": "m_uavcan", "color": "#41d84d", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#41d854", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_uavcan", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d880", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#41d89e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8b4", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#b841d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d8416d", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#ce41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#d8417b", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#d84199", "style": "normal"}, {"source": "t_sensor_uwb", "target": "m_uwb_sr150", "color": "#7641d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841d3", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_vertiq_io", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_vertiq_io", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_vertiq_io", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_vertiq_io", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_vertiq_io", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_vertiq_io", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_vertiq_io", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_vertiq_io", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_vertiq_io", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_vertiq_io", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vertiq_io", "color": "#d641d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl2_io", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_voxl2_io", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl2_io", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl2_io", "color": "#d87b41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl2_io", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl2_io", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl2_io", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl2_io", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl2_io", "color": "#41d880", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl2_io", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl2_io", "color": "#d641d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl_esc", "color": "#d84841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_voxl_esc", "color": "#d85741", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl_esc", "color": "#d87441", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl_esc", "color": "#d87b41", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxl_esc", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl_esc", "color": "#59d841", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl_esc", "color": "#41d84d", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl_esc", "color": "#41d863", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl_esc", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl_esc", "color": "#41d880", "style": "normal"}, {"source": "t_led_control", "target": "m_voxl_esc", "color": "#41d89e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl_esc", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl_esc", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_voxl_esc", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxl_esc", "color": "#d8416d", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxlpm", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxlpm", "color": "#d8416d", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#d89141", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d854", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#41c2d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#9b41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d8416d", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_system_power_simulator", "name": "system_power_simulator", "type": "Module", "color": "#666666"}, {"id": "m_lightware_sf45_serial", "name": "lightware_sf45_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_airship_att_control", "name": "airship_att_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_airspeed_sim", "name": "sensor_airspeed_sim", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_rover_differential", "name": "rover_differential", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_io_bypass_control", "name": "io_bypass_control", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_battery_simulator", "name": "battery_simulator", "type": "Module", "color": "#666666"}, {"id": "m_simulator_mavlink", "name": "simulator_mavlink", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_template_module", "name": "template_module", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_rover_ackermann", "name": "rover_ackermann", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_agp_sim", "name": "sensor_agp_sim", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_linux_pwm_out", "name": "linux_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_rpm_simulator", "name": "rpm_simulator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_rover_mecanum", "name": "rover_mecanum", "type": "Module", "color": "#666666"}, {"id": "m_ets_airspeed", "name": "ets_airspeed", "type": "Module", "color": "#666666"}, {"id": "m_sagetech_mxs", "name": "sagetech_mxs", "type": "Module", "color": "#666666"}, {"id": "m_i2c_launcher", "name": "i2c_launcher", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_rpm_capture", "name": "rpm_capture", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250_i2c", "name": "mpu9250_i2c", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1_mag", "name": "lsm9ds1_mag", "type": "Module", "color": "#666666"}, {"id": "m_pps_capture", "name": "pps_capture", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls_pwm", "name": "ll40ls_pwm", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_leddar_one", "name": "leddar_one", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_bmi088_i2c", "name": "bmi088_i2c", "type": "Module", "color": "#666666"}, {"id": "m_iam20680hp", "name": "iam20680hp", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_iridiumsbd", "name": "iridiumsbd", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_uavcannode", "name": "uavcannode", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_pwm", "name": "rgbled_pwm", "type": "Module", "color": "#666666"}, {"id": "m_microbench", "name": "microbench", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_adis16507", "name": "adis16507", "type": "Module", "color": "#666666"}, {"id": "m_adis16470", "name": "adis16470", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_adis16477", "name": "adis16477", "type": "Module", "color": "#666666"}, {"id": "m_adis16497", "name": "adis16497", "type": "Module", "color": "#666666"}, {"id": "m_icm40609d", "name": "icm40609d", "type": "Module", "color": "#666666"}, {"id": "m_icm20608g", "name": "icm20608g", "type": "Module", "color": "#666666"}, {"id": "m_icm42670p", "name": "icm42670p", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_vectornav", "name": "vectornav", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_rpi_rc_in", "name": "rpi_rc_in", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_vertiq_io", "name": "vertiq_io", "type": "Module", "color": "#666666"}, {"id": "m_tattu_can", "name": "tattu_can", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_uwb_sr150", "name": "uwb_sr150", "type": "Module", "color": "#666666"}, {"id": "m_tcbp001ta", "name": "tcbp001ta", "type": "Module", "color": "#666666"}, {"id": "m_mpl3115a2", "name": "mpl3115a2", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_gz_bridge", "name": "gz_bridge", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_voxl2_io", "name": "voxl2_io", "type": "Module", "color": "#666666"}, {"id": "m_mappydot", "name": "mappydot", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_icm42605", "name": "icm42605", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_iim42653", "name": "iim42653", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_icm20689", "name": "icm20689", "type": "Module", "color": "#666666"}, {"id": "m_icm45686", "name": "icm45686", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_roboclaw", "name": "roboclaw", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_voxl_esc", "name": "voxl_esc", "type": "Module", "color": "#666666"}, {"id": "m_neopixel", "name": "neopixel", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_gyro_fft", "name": "gyro_fft", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_afbrs50", "name": "afbrs50", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_gy_us42", "name": "gy_us42", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_lsm303d", "name": "lsm303d", "type": "Module", "color": "#666666"}, {"id": "m_lsm9ds1", "name": "lsm9ds1", "type": "Module", "color": "#666666"}, {"id": "m_mpu6500", "name": "mpu6500", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250", "name": "mpu9250", "type": "Module", "color": "#666666"}, {"id": "m_mpu6000", "name": "mpu6000", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_asp5033", "name": "asp5033", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_pcf8583", "name": "pcf8583", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_tap_esc", "name": "tap_esc", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_failure", "name": "failure", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_atxxxx", "name": "atxxxx", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_mb12xx", "name": "mb12xx", "type": "Module", "color": "#666666"}, {"id": "m_pga460", "name": "pga460", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_l3gd20", "name": "l3gd20", "type": "Module", "color": "#666666"}, {"id": "m_bmi270", "name": "bmi270", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_bmi055", "name": "bmi055", "type": "Module", "color": "#666666"}, {"id": "m_bmi085", "name": "bmi085", "type": "Module", "color": "#666666"}, {"id": "m_sch16t", "name": "sch16t", "type": "Module", "color": "#666666"}, {"id": "m_cyphal", "name": "cyphal", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_bmm350", "name": "bmm350", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_ms4515", "name": "ms4515", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina220", "name": "ina220", "type": "Module", "color": "#666666"}, {"id": "m_voxlpm", "name": "voxlpm", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_lps25h", "name": "lps25h", "type": "Module", "color": "#666666"}, {"id": "m_ms5837", "name": "ms5837", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_srf02", "name": "srf02", "type": "Module", "color": "#666666"}, {"id": "m_srf05", "name": "srf05", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_tests", "name": "tests", "type": "Module", "color": "#666666"}, {"id": "m_auav", "name": "auav", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#4179d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#7641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#d86541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_internal_combustion_engine_control", "name": "internal_combustion_engine_control", "type": "topic", "color": "#76d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#416ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#4ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#41d854", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d89141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#d841c5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#d8416d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#41d871", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#419ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#60d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#41d88f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#4196d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#8cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#415bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#8541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#d84191", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#41d1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_steering_setpoint", "name": "rover_steering_setpoint", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#d84f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#c0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#aad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d879", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#41d880", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_position_setpoint", "name": "rover_position_setpoint", "type": "topic", "color": "#418fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_attitude_setpoint", "name": "rover_attitude_setpoint", "type": "topic", "color": "#ce41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_rover_throttle_setpoint", "name": "rover_throttle_setpoint", "type": "topic", "color": "#d841d3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_velocity_setpoint", "name": "rover_velocity_setpoint", "type": "topic", "color": "#d841af", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84183", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84174", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d8d341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#41d863", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#c7d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#41d8c2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d8418a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d8415e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d8414f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_rover_rate_setpoint", "name": "rover_rate_setpoint", "type": "topic", "color": "#41d84d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d8ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_aux_global_position", "name": "aux_global_position", "type": "topic", "color": "#4180d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource2d.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#7e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#9b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#aa41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#b141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#41d85b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#41d89e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#41cad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#41acd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#d84148", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#41d8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#41c2d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_iridiumsbd_status", "name": "iridiumsbd_status", "type": "topic", "color": "#414dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_obstacle_distance", "name": "obstacle_distance", "type": "topic", "color": "#d841cc", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ObstacleDistance.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d88a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_sensor_gyro_fifo", "name": "sensor_gyro_fifo", "type": "topic", "color": "#a2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41d8d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#41a5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#5941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#6841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#d841a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#d84841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#d8c541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#6fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#59d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d887", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#4171d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#4a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos", "name": "actuator_servos", "type": "topic", "color": "#6041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#c041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d84165", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d88341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d89941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#9bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#52d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d896", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#41d8bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#41bbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#4154d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#d85e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#d87441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d8a5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#41d8ac", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#5241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#d8cc41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#d6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#ced841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#b1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#9441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d8a041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#d8af41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#7ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#4163d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pps_capture", "name": "pps_capture", "type": "topic", "color": "#b841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#d841a0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#d84157", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_uwb", "name": "sensor_uwb", "type": "topic", "color": "#d86d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#b8d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#85d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#68d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#41d86a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#c741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#8c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#6f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d84199", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#d85741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8a741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#4187d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#94d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#a241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}, {"id": "t_rpm", "name": "rpm", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}], "links": [{"source": "m_voxl2_io", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_voxl2_io", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#5241d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d89941", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#5241d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#68d841", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d887", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d89941", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#5241d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#ced841", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_linux_pwm_out", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_rpm", "color": "#d841bd", "style": "dashed"}, {"source": "m_rpm_capture", "target": "t_pwm_input", "color": "#8c41d8", "style": "dashed"}, {"source": "m_ll40ls_pwm", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_mb12xx", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_vehicle_attitude", "color": "#6841d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_lightware_sf45_serial", "target": "t_obstacle_distance", "color": "#d841cc", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_pga460", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_leddar_one", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_afbrs50", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_gy_us42", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_srf02", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_srf05", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_mappydot", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_adis16477", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_adis16497", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_lsm9ds1", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_bmi088_i2c", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_bmi270", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_bmi085", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm40609d", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_mpu6500", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm42605", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_iim42653", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_iam20680hp", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_sch16t", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#68d841", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#41d887", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_selection", "color": "#d841a7", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_gps", "color": "#68d841", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_vectornav", "target": "t_estimator_status", "color": "#5941d8", "style": "dashed"}, {"source": "m_cyphal", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_cyphal", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_lsm9ds1_mag", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_bmm350", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#85d841", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#d6d841", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#85d841", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_ms4515", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_auav", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_auav", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_asp5033", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_ets_airspeed", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#41d8a5", "style": "dashed"}, {"source": "m_pps_capture", "target": "t_pps_capture", "color": "#b841d8", "style": "dashed"}, {"source": "m_rpi_rc_in", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#8c41d8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_voxl_esc", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_vertiq_io", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_iridiumsbd", "target": "t_iridiumsbd_status", "color": "#414dd8", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_uavcannode", "target": "t_gps_inject_data", "color": "#41d887", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_ina220", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_voxlpm", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_tattu_can", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#aa41d8", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#aa41d8", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#aa41d8", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#aa41d8", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#aa41d8", "style": "dashed"}, {"source": "m_pcf8583", "target": "t_rpm", "color": "#d841bd", "style": "dashed"}, {"source": "m_rpm_simulator", "target": "t_rpm", "color": "#d841bd", "style": "dashed"}, {"source": "m_sagetech_mxs", "target": "t_transponder_report", "color": "#d84148", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_tap_esc", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_uwb_sr150", "target": "t_sensor_uwb", "color": "#d86d41", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_tcbp001ta", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_mpl3115a2", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_lps25h", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_ms5837", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_actuator_test", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_tests", "target": "t_dataman_request", "color": "#d84165", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_io_bypass_control", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_failure", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#d841c5", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#d8c541", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#60d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d641d8", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#d85741", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d84199", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#41d89e", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#d84841", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#41cad8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#d841a7", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#7ed841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#4163d8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#aad841", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#d87b41", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#d8b641", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#41d845", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#d8bd41", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d88341", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#41bbd8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d8415e", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#94d841", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#d87441", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#41d85b", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#d85e41", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d641d8", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#c0d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#a241d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#41d863", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#41d880", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#d841a7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#5941d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#8cd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#6841d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#41d8c2", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#52d841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#41c2d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#41d845", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_steering_setpoint", "color": "#d84141", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_attitude_setpoint", "color": "#ce41d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_position_setpoint", "color": "#418fd8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_velocity_setpoint", "color": "#d841af", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_rate_setpoint", "color": "#41d84d", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_throttle_setpoint", "color": "#d841d3", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_battery_status", "color": "#9bd841", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_optical_flow", "color": "#aa41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_rpm", "color": "#d841bd", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d8d341", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_attitude_groundtruth", "color": "#41d871", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_global_position_groundtruth", "color": "#4179d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84183", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_local_position_groundtruth", "color": "#4145d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_irlock_report", "color": "#41d8a5", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_input_rc", "color": "#6f41d8", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d84199", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#4145d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#41d871", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro_fifo", "color": "#a2d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#4179d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#68d841", "style": "dashed"}, {"source": "m_sensor_airspeed_sim", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_system_power_simulator", "target": "t_system_power", "color": "#d6d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gps", "color": "#68d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_optical_flow", "color": "#aa41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_differential_pressure", "color": "#41b4d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_mag", "color": "#c741d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gyro", "color": "#d8af41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_obstacle_distance", "color": "#d841cc", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_attitude_status", "color": "#d841c5", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_attitude_groundtruth", "color": "#41d871", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_esc_status", "color": "#41d86a", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_global_position_groundtruth", "color": "#4179d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_distance_sensor", "color": "#4171d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_information", "color": "#d84191", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_local_position_groundtruth", "color": "#4145d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_visual_odometry", "color": "#d84183", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_baro", "color": "#d84157", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_sensor_agp_sim", "target": "t_aux_global_position", "color": "#4180d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#4154d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d88a41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d8414f", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#41d8ac", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#c7d841", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#41acd8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d89141", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#d8417b", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#41d8bb", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#7e41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#415bd8", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#4196d8", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#41d845", "style": "dashed"}, {"source": "m_internal_combustion_engine_control", "target": "t_internal_combustion_engine_control", "color": "#76d841", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_steering_setpoint", "color": "#d84141", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_attitude_setpoint", "color": "#ce41d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_position_setpoint", "color": "#418fd8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_velocity_setpoint", "color": "#d841af", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_rate_setpoint", "color": "#41d84d", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_throttle_setpoint", "color": "#d841d3", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d8ca", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#415bd8", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#41a5d8", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#41d845", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d8418a", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#41d1d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#41d880", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#5941d8", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#41d854", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#41d8b4", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d89141", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#d84f41", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#b1d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#d86541", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#d8416d", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#52d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#4ad841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#416ad8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#41c2d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#419ed8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41d8d1", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#8541d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#41d8d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#59d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#d87441", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#c041d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d88341", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d8a041", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#4187d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#41d880", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#c7d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d896", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#7641d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#b8d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d84165", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#d84148", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#41d854", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#52d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d641d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#b141d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#41c2d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#43d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#415bd8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#d641d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#41d88f", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#415bd8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_throttle_setpoint", "color": "#d841d3", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_steering_setpoint", "color": "#d84141", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_attitude_setpoint", "color": "#ce41d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_position_setpoint", "color": "#418fd8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_velocity_setpoint", "color": "#d841af", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_motors", "color": "#4a41d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_rate_setpoint", "color": "#41d84d", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_servos", "color": "#6041d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_position_controller_status", "color": "#41d88f", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#b1d841", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#d8417b", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#7e41d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#c0d841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#6fd841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d88341", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#b1d841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#4341d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d879", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#d841a0", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#9b41d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#d8cc41", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8a741", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#6841d8", "style": "dashed"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl2_io", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl2_io", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl2_io", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl2_io", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl2_io", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl2_io", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl2_io", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl2_io", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_voxl2_io", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl2_io", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl2_io", "color": "#d8b641", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#6fd841", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_capture", "color": "#b841d8", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_uavcan", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#6fd841", "style": "normal"}, {"source": "t_gripper", "target": "m_uavcan", "color": "#d85741", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#d87441", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d88341", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#d8b641", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#d8c541", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#d8cc41", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d841b6", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d879", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#41d887", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#c7d841", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#d841a0", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#b1d841", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#4a41d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d887", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_atxxxx", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_atxxxx", "color": "#d841b6", "style": "normal"}, {"source": "t_battery_status", "target": "m_atxxxx", "color": "#9bd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#41d880", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#9bd841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#41acd8", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#d87441", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#6f41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d841b6", "style": "normal"}, {"source": "t_pps_capture", "target": "m_camera_trigger", "color": "#b841d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d88341", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_px4io", "color": "#76d841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_px4io", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#d8b641", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#ced841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_linux_pwm_out", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_linux_pwm_out", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_linux_pwm_out", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_linux_pwm_out", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_linux_pwm_out", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_linux_pwm_out", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_linux_pwm_out", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_linux_pwm_out", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_linux_pwm_out", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_linux_pwm_out", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_linux_pwm_out", "color": "#d8b641", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#9441d8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_ll40ls_pwm", "color": "#8c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_lightware_sf45_serial", "color": "#6841d8", "style": "normal"}, {"source": "t_obstacle_distance", "target": "m_lightware_sf45_serial", "color": "#d841cc", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_lightware_sf45_serial", "color": "#4171d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d88341", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#7641d8", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_dshot", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_dshot", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#d8b641", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#d8cc41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#6841d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#9bd841", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#85d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#4154d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#41d887", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cyphal", "color": "#4154d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_cyphal", "color": "#68d841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_cyphal", "color": "#41d8ac", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_roboclaw", "color": "#4154d8", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#85d841", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pca9685_pwm_out", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pca9685_pwm_out", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#d8b641", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_pps_capture", "color": "#68d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxl_esc", "color": "#d88341", "style": "normal"}, {"source": "t_led_control", "target": "m_voxl_esc", "color": "#d841a0", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_voxl_esc", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_voxl_esc", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_voxl_esc", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_voxl_esc", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_voxl_esc", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_voxl_esc", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_voxl_esc", "color": "#d85741", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxl_esc", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_voxl_esc", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_voxl_esc", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_voxl_esc", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_voxl_esc", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_voxl_esc", "color": "#d8b641", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_vertiq_io", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vertiq_io", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_vertiq_io", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_vertiq_io", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_vertiq_io", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_vertiq_io", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_vertiq_io", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_vertiq_io", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_vertiq_io", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_vertiq_io", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_vertiq_io", "color": "#d8b641", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d84199", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#41d86a", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#9bd841", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#d87441", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#41d880", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#9bd841", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#9bd841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d88341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#d88341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina220", "color": "#d88341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina220", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_voxlpm", "color": "#d88341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_voxlpm", "color": "#aad841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#d88341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_sagetech_mxs", "color": "#d88341", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_sagetech_mxs", "color": "#68d841", "style": "normal"}, {"source": "t_transponder_report", "target": "m_sagetech_mxs", "color": "#d84148", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_sagetech_mxs", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#d88341", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#9bd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#6fd841", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#9bd841", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#d841a0", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#d841a0", "style": "normal"}, {"source": "t_led_control", "target": "m_neopixel", "color": "#d841a0", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_pwm", "color": "#d841a0", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#d841a0", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#d841a0", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_tap_esc", "color": "#76d841", "style": "normal"}, {"source": "t_led_control", "target": "m_tap_esc", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_tap_esc", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_tap_esc", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_tap_esc", "color": "#4154d8", "style": "normal"}, {"source": "t_tune_control", "target": "m_tap_esc", "color": "#d8cc41", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_tap_esc", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_tap_esc", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_tap_esc", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_tap_esc", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_tap_esc", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_tap_esc", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_tap_esc", "color": "#d8b641", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#d8b641", "style": "normal"}, {"source": "t_sensor_uwb", "target": "m_uwb_sr150", "color": "#d86d41", "style": "normal"}, {"source": "t_input_rc", "target": "m_tests", "color": "#6f41d8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_tests", "color": "#41a5d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_i2c_launcher", "color": "#d88341", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_io_bypass_control", "color": "#d88a41", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_microbench", "color": "#d8af41", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_microbench", "color": "#d841b6", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_microbench", "color": "#a2d841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_microbench", "color": "#41bbd8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_failure", "color": "#9b41d8", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_template_module", "color": "#d84841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#d841c5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#8541d8", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#d84191", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#41d880", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d8a041", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airship_att_control", "color": "#d88341", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_airship_att_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#41d89e", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#41b4d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#c741d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d8415e", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#9441d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#d841a7", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#d8af41", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#aa41d8", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#85d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#41d8c2", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#d87b41", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#7ed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d88341", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#9441d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#d8af41", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#d87b41", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d841b6", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#52d841", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#d86541", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#d8416d", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d8415e", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#4ad841", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#a241d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#41acd8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#6841d8", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#419ed8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#6fd841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#c741d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#9441d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#d84157", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#d8af41", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d879", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#41acd8", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#6841d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#41d854", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#415bd8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#6fd841", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41d8d1", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#8c41d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#68d841", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#d85e41", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#41d8d8", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#59d841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#9441d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#41cad8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#9b41d8", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#a241d8", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#d87441", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#b141d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#d87b41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d88341", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#41b4d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#c741d8", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8a741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#41acd8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#d8af41", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d841b6", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#41d86a", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#41d863", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#41d880", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#d841a7", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#d6d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#4171d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#c7d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#4154d8", "style": "normal"}, {"source": "t_iridiumsbd_status", "target": "m_commander", "color": "#414dd8", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d896", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#c0d841", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#41d89e", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#4341d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#5241d8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#d84157", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#9bd841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#94d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#5941d8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#8cd841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#6841d8", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#41d8c2", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#6fd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d879", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#9bd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d88341", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#41d86a", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d88341", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#85d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#41d845", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#415bd8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#c0d841", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#6f41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d88341", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d84199", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#c7d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d8ca", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#6fd841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#d84f41", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84183", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#d84841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#4171d8", "style": "normal"}, {"source": "t_aux_global_position", "target": "m_ekf2", "color": "#4180d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#41cad8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#41acd8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#7ed841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d88341", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#41d1d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d879", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#9bd841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#41d845", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#41acd8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_differential", "color": "#8541d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_differential", "color": "#d84141", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_differential", "color": "#d8417b", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_differential", "color": "#ce41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_differential", "color": "#d841b6", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_differential", "color": "#418fd8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_differential", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_differential", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_differential", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_differential", "color": "#4a41d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_differential", "color": "#41d84d", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_differential", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_differential", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#41d871", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#4179d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_simulator", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_battery_simulator", "color": "#6fd841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_simulator", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_simulator_mavlink", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_simulator_mavlink", "color": "#6fd841", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_mavlink", "color": "#d88a41", "style": "normal"}, {"source": "t_battery_status", "target": "m_simulator_mavlink", "color": "#9bd841", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_mavlink", "color": "#d8414f", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#4179d8", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d8414f", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d88a41", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#4145d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#4179d8", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#4145d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_sensor_airspeed_sim", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#4179d8", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_gz_bridge", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gz_bridge", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_gz_bridge", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_gz_bridge", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_gz_bridge", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_gz_bridge", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_gz_bridge", "color": "#d85741", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_gz_bridge", "color": "#60d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gz_bridge", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_gz_bridge", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_gz_bridge", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_gz_bridge", "color": "#d8b641", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_agp_sim", "color": "#4179d8", "style": "normal"}, {"source": "t_internal_combustion_engine_control", "target": "m_pwm_out_sim", "color": "#76d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#6fd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#d8c541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#4154d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d8418a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#b1d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#d85741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d879", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#4a41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#41d8ac", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#d8b641", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#9b41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d88341", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#8541d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#41d89e", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#d84f41", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84174", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d8415e", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#41d880", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#d841a7", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#41acd8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#41d8bb", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d88341", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d84199", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#d84f41", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84174", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#aad841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#5941d8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#8cd841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#6841d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#4163d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#c7d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d8415e", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#7e41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d88341", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#41d1d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d879", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#9bd841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#41d845", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d88341", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#c741d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_internal_combustion_engine_control", "color": "#d88341", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_internal_combustion_engine_control", "color": "#41d879", "style": "normal"}, {"source": "t_rpm", "target": "m_internal_combustion_engine_control", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_internal_combustion_engine_control", "color": "#4a41d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_mecanum", "color": "#8541d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_mecanum", "color": "#d84141", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_mecanum", "color": "#d8417b", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_mecanum", "color": "#ce41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_mecanum", "color": "#d841b6", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_mecanum", "color": "#418fd8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_mecanum", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_mecanum", "color": "#d8415e", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_mecanum", "color": "#4a41d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_mecanum", "color": "#41d879", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_mecanum", "color": "#41d84d", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_mecanum", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_mecanum", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d841b6", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d8a5", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#d841c5", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#41d880", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d89941", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#d8415e", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d84165", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#6841d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#41d854", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#415bd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d88341", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#d8bd41", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#c0d841", "style": "normal"}, {"source": "t_rpm", "target": "m_control_allocator", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84174", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#52d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d8415e", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d641d8", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#41c2d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#43d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#c7d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#41d8ca", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#d84841", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#d84183", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#d8d341", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#4171d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d88341", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d88341", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#8541d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#41d880", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#a241d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#41acd8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#6fd841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d8ca", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#41a5d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#b8d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d841b6", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#4187d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#41d880", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#a241d8", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#416ad8", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#d87441", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#d84148", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#41d88f", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d88341", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#4196d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#6fd841", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#8541d8", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#d87441", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d89141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#41acd8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d841b6", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#4163d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#c7d841", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#4341d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d8415e", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#6841d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#8541d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#d8415e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#41d880", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#415bd8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_fft", "color": "#d8af41", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_gyro_fft", "color": "#a2d841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_gyro_fft", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_gyro_fft", "color": "#41d89e", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_ackermann", "color": "#8541d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_ackermann", "color": "#d84141", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_ackermann", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_ackermann", "color": "#d841b6", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_ackermann", "color": "#ce41d8", "style": "normal"}, {"source": "t_actuator_servos", "target": "m_rover_ackermann", "color": "#6041d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_ackermann", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_ackermann", "color": "#d8415e", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_ackermann", "color": "#4a41d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_ackermann", "color": "#41d879", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_ackermann", "color": "#41d84d", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_ackermann", "color": "#418fd8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_ackermann", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_ackermann", "color": "#6841d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_rover_ackermann", "color": "#41d88f", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#c7d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#6fd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d8415e", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#41d8bb", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#415bd8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#c0d841", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#4341d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d88341", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#6fd841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#41bbd8", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8a741", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#9bd841", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#d84841", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#d84183", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d8d341", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#6841d8", "style": "normal"}]} \ No newline at end of file diff --git a/docs/public/middleware/graph_px4_fmu-v2.json b/docs/public/middleware/graph_px4_fmu-v2.json index 63b785f3cc74..9799ca4f8450 100644 --- a/docs/public/middleware/graph_px4_fmu-v2.json +++ b/docs/public/middleware/graph_px4_fmu-v2.json @@ -1 +1 @@ -{"nodes": [{"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_mpu6000", "name": "mpu6000", "type": "Module", "color": "#666666"}, {"id": "m_lsm303d", "name": "lsm303d", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_l3gd20", "name": "l3gd20", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d8417f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#4bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#41a9d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#a9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#41d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#41d3d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#c941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8a941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d89f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84155", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#8ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d8418a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d8416a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#bed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#9fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41d8d3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d84194", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d86a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d87f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#4b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#8a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841d3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841c9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#41c9d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#6041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#9441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d8419f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#4194d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d86041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8be41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#94d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41d8c9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#5541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#7f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#be41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8b441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8d341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#b4d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#60d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#55d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d84b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4160d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#b441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#75d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d8be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#417fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#7541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d84160", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d89f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d855", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d860", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d894", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#418ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d875", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#41bed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#4175d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#9f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8c941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41d88a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#416ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#414bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#a941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d87f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#c9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#419fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#4155d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#4141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d88a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d86a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#7fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d8414b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_battery_status", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d87f41", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#6a41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84b41", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d87541", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#7fd841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#75d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#6ad841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d855", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d860", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41d88a", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#41c9d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#41a9d8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#9f41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d341d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841be", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d84160", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d86a41", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8a941", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8be41", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#a9d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#9fd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#94d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#8ad841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#5541d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#be41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841b4", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d8418a", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d84175", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d8414b", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d875", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#8a41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841c9", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d84b", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#417fd8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#4155d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#4141d8", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro", "color": "#414bd8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d84194", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d894", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#a941d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_accel", "color": "#4175d8", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_mag", "color": "#4141d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d875", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d89f", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8a9", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d341d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d84160", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d88a41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d89f41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8b441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8c941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8d341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d3d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#c9d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#bed841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#b4d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#7fd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#4bd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#41d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#41d84b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d87f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41d8b4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41d8d3", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#41b4d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#4175d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#416ad8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#4155d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#414bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#4141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#4b41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#7f41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#8a41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#9441d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#9f41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#b441d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#be41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#c941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d841b4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d8418a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d8416a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84155", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d8416a", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#7541d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#8a41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#c941d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841c9", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d8417f", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d8416a", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_accel", "color": "#4175d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro", "color": "#414bd8", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#416ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8b441", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#60d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#55d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d860", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d8b4", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d8be", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41d8c9", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#41d3d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#419fd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#4194d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#9441d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d341d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841b4", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d84194", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d84160", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d84b41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d86041", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d87541", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#d84b41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d86041", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d87541", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d86a", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#41d88a", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#41bed8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#418ad8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#9f41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d341d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#d841d3", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8a9", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d88a41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#bed841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4160d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#5541d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#6041d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841a9", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d8419f", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#41d84b", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#417fd8", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#4155d8", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#9f41d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#9f41d8", "style": "dashed"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d87f41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d84160", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d87f41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d84b41", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84b41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85541", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89441", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#bed841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#b4d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#a9d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#9fd841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#94d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#8ad841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#7fd841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#60d841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d860", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d894", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d89f", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8a9", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d8be", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41d8c9", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41d8d3", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#41c9d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#4194d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#418ad8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#4175d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#416ad8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#4155d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#4141d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#5541d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#6041d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#6a41d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#7f41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d8419f", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d84160", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d8414b", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#6ad841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8a9", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d84160", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8b441", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d88a41", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#b4d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d87f", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4160d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#5541d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#6041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d84160", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84155", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#7541d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#c941d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d84160", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d84b", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84b41", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#41d3d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#5541d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#7541d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#8a41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d8419f", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d84160", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89441", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d89f", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#b441d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d84160", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d89f", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8a9", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d84160", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d84b41", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d86041", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d88a41", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89441", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d89f41", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d8be41", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8c941", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8d341", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d3d841", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#c9d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#bed841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#b4d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#a9d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#9fd841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#94d841", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#7fd841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#75d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#60d841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#4bd841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#41d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#41d84b", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d855", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d860", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d86a", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d87f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d89f", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d8a9", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41d8b4", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41d8be", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#41d3d8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#41a9d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#4194d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#417fd8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#416ad8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#4155d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#4141d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#5541d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#9441d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#a941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#c941d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d8419f", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d8417f", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d84160", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d8414b", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d89f", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#c941d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d84160", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#8a41d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d8418a", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89441", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8a941", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d89f", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d84160", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8be41", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#55d841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d860", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d87f", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d8b4", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#419fd8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#9441d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d8418a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d84160", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d8414b", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d84b41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#d85541", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d86a41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d87541", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d875", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d89f", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d341d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#d84b41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#d85541", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d86a41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d87541", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#41d875", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d89f", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#41bed8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d84160", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d86a", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8a9", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#41b4d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41d88a", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d87f41", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#bed841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#9fd841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#4175d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#4141d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#4b41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#5541d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841be", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d8419f", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#41d84b", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#9f41d8", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_mpu6000", "name": "mpu6000", "type": "Module", "color": "#666666"}, {"id": "m_lsm303d", "name": "lsm303d", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_l3gd20", "name": "l3gd20", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d85541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#be41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#d84155", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d8a941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#41d894", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#b441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#d841be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#a9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#d86a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#41d89f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#418ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#7541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#7f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d87f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d89f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#41d84b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#75d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#8a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#d84194", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#d8416a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d841a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d8d3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#41bed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#9f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#d89441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#419fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#4141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d841c9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#41d860", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#d84b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d8c941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#55d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#41d88a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#41d8a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#41d3d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d841d3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#d841b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#d8be41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#d3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#8ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#4bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#41d8c9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#41c9d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#4194d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#4b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8419f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#c9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#9fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#41d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#41d86a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#417fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#414bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#c941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#d84160", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#60d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#4175d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#416ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#5541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d8417f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#d86041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#bed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#7fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#6041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#9441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#d88a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#d8b441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8d341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#4155d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#a941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8414b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#b4d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#41d87f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#41a9d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#4160d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#d8418a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d855", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#41d8be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d875", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#94d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_board_adc", "target": "t_adc_report", "color": "#41a9d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#d86041", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#41d8b4", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#d8418a", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#d3d841", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#d84160", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#d84160", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#d3d841", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#d8418a", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_mpu6000", "target": "t_sensor_gyro", "color": "#d8b441", "style": "dashed"}, {"source": "m_l3gd20", "target": "t_sensor_gyro", "color": "#d8b441", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_mag", "color": "#41d87f", "style": "dashed"}, {"source": "m_lsm303d", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#41d87f", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#41d8c9", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d8c941", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d8417f", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#417fd8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#417fd8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#4175d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#bed841", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#7fd841", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#41d8c9", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#d88a41", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#9f41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d8c941", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d855", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d8417f", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#8ad841", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#7fd841", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#414bd8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#417fd8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#7fd841", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#d88a41", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#416ad8", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#60d841", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#9f41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#41d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#41d89f", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d341d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#d84155", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#d87541", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#419fd8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d8417f", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#41d86a", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#8ad841", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#41d8c9", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d841a9", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#a9d841", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#55d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#8a41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#94d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#9f41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#41d84b", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#41b4d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d89f41", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d841d3", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#418ad8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#41d88a", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#d841b4", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#41d894", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#6041d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#6ad841", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#75d841", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#9f41d8", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#a941d8", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#5541d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#7541d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#41d841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#c941d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#d86a41", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#6041d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#8ad841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#d84141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d8d3", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#7f41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#41d3d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#d87541", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#9441d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#8ad841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d87f41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#7fd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#9f41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#b441d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#be41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#41bed8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d855", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d89f41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d841d3", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#418ad8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#4194d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41d875", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d8a941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#d8b441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#41d87f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#4160d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8419f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#d84194", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#d8418a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#d8416a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8d341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#414bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#4141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#41d8a9", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#41d8b4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#41d8be", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#4b41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#d3d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8414b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#6a41d8", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d87f41", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d8a941", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#6ad841", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d85541", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#9fd841", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d87f41", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#c9d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#b4d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#d84b41", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#8ad841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#75d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#41c9d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#9f41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#4bd841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#41d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#41d860", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#418ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d875", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#d841be", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#416ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#4141d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#4b41d8", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#d86a41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#d8416a", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#d8be41", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#41d88a", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#41d8be", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#d89441", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#4155d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d841c9", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#7fd841", "style": "dashed"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#41a9d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#417fd8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#d3d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#d3d841", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#d88a41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#41d8c9", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#7541d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#8ad841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d841a9", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d8417f", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#6041d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#417fd8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#417fd8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#41d8c9", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#bed841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#7541d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#41d841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d8417f", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#6041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#8ad841", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#7fd841", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#41a9d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#41d841", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#c9d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#7541d8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#41d8c9", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#d84b41", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#8a41d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#d86041", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#d86a41", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#d87541", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#9441d8", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#94d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#8ad841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#75d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#41c9d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#9f41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#41d841", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#d89441", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#41d84b", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#c941d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#41d860", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d89f41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#418ad8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#419fd8", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#4194d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#417fd8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d841c9", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#4175d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#d8b441", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#416ad8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#41d87f", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#d841b4", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#41d88a", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#41d894", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#d84194", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#d8418a", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#d8416a", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#41d8b4", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#41d8a9", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#5541d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#41d841", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#41d89f", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d341d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#d86a41", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#4b41d8", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#4194d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#75d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d8d3", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#d8be41", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#7f41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#41d88a", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#41d8be", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#d89441", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#4155d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#8ad841", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d8a941", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#75d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#41d841", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#9fd841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d89f41", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#8ad841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#d84175", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#d841be", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#41d88a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#41d841", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#9fd841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d89f41", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#418ad8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d841c9", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#417fd8", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#7541d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#8ad841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#7541d8", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#c941d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#d86a41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d85541", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#d86a41", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#d87541", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d87f41", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d89f41", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d8a941", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d8c941", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8d341", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#d3d841", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#c9d841", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#94d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#8ad841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#75d841", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#60d841", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#55d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#41d841", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d855", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#41d860", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#41d86a", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41d875", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#41d87f", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#41d88a", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#41d894", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#41d8b4", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#41d8be", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d8d3", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#41c9d8", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#41b4d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#418ad8", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#4194d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#417fd8", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#416ad8", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#4160d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#4155d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#414bd8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#4141d8", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#6a41d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#7541d8", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#8a41d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#a941d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#9f41d8", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#b441d8", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d841d3", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d841c9", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#d841be", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#d841b4", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8419f", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#d8418a", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#d8416a", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#d84160", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#d84155", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8414b", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d8a941", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#7541d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#75d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d89f41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d841d3", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#75d841", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#6ad841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d89f41", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d87f41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#7541d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#75d841", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#a9d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d341d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#b4d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#75d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d8d3", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#416ad8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#4141d8", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#4bd841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#8ad841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#41d841", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#55d841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#418ad8", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#94d841", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d875", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d89f41", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#41d3d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#d86a41", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d855", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#d8416a", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#d8b441", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#41d87f", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#41d88a", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#8a41d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#4155d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#41bed8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d341d8", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#41a9d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#9441d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d841c9", "style": "normal"}]} \ No newline at end of file diff --git a/docs/public/middleware/graph_px4_fmu-v4.json b/docs/public/middleware/graph_px4_fmu-v4.json index ff7ab8543fb0..0ba5a09f7ad1 100644 --- a/docs/public/middleware/graph_px4_fmu-v4.json +++ b/docs/public/middleware/graph_px4_fmu-v4.json @@ -1 +1 @@ -{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250_i2c", "name": "mpu9250_i2c", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_icm20608g", "name": "icm20608g", "type": "Module", "color": "#666666"}, {"id": "m_vectornav", "name": "vectornav", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_fake_gps", "name": "fake_gps", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250", "name": "mpu9250", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#c741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#c0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d841af", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#4197d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#d8418f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41d85d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d88841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#79d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84188", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#45d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#41d8a4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#5fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#41d8d2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#4170d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#7fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#41d856", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#41d849", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#41d850", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#4191d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#b3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#72d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#41d843", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#41b1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#418ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d841d6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8af41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41b8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#9341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#ad41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#8cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#65d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d8ab", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8c5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8cb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84161", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d8415b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#a0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#b341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d84195", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d84182", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#cdd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#add841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#41d863", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41bed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#41abd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d8419c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d86141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#41a4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841bc", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#86d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d89e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#5f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#9941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841c9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841c3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#d88241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d897", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#4184d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#6c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#a041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d841a2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#41d86a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#41cbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#4163d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#4541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#7241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d85b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8c341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#a6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41c5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#4177d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#6541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#8c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#cd41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8bc41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8d041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#c7d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#58d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#52d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#4bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d870", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4143d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#c041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d841d0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d89c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8a941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#93d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#6cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d2d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#4156d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#7f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d8a241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d877", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d87d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d88a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8b8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#415dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_battery_info", "name": "battery_info", "type": "topic", "color": "#d88f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d891", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#419ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#4150d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#7941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#a641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8c941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8d641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41d8b1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#4149d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#5241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#8641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#ba41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d4d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#bad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#416ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#4b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#5841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#417dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d884", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#99d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#d87541", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#d88241", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#cd41d8", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_info", "color": "#d88f41", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_info", "color": "#d88f41", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d87541", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#7941d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d8a941", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d89c41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8a941", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#99d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#93d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#8cd841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d877", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d87d", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41d8b1", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#4184d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#4170d8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#a641d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841bc", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d86841", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8af41", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8c341", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#bad841", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#b3d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#add841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#a6d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#a0d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#6541d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#cd41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d84195", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d8417b", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84147", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_fake_gps", "target": "t_sensor_gps", "color": "#4b41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d891", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#9941d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841c3", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d897", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#65d841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#8641d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#86d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#7fd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#79d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#72d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#6cd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d891", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#41d8a4", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d8ab", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8be", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#419ed8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#4197d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#7241d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84188", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#6cd841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#7241d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#4bd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#45d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#41d849", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#41d850", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#41d863", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#41d86a", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#41cbd8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d870", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#4156d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#4b41d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#bad841", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#41d88a", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d8419c", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d89e", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#41d8b1", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8b641", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#a6d841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#d84195", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_odometry", "color": "#d8417b", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8b8", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#ba41d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d891", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8c5", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8cb", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89541", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d8a241", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8bc41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8c941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8d041", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8d641", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d4d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#cdd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#99d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#5fd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#45d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#41d843", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#41d856", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41d85d", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#41d870", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d884", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#41d88a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d89e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#41d8d2", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41d8d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41bed8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#41b1d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#41abd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#41a4d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#4177d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#4b41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#5f41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#8c41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#9941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#a041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#a641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#ad41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#c041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#cd41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d841d6", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d84195", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84182", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84154", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88841", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#7f41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#9941d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d6", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841c3", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84188", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d84e41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#cdd841", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#cdd841", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8bc41", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#c0d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#58d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#52d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d87d", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d8d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d2d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41c5d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#418ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#416ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#4163d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#a041d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d8419c", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d8416e", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#5f41d8", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#5f41d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#5f41d8", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#417dd8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d86141", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#5f41d8", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d884", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8cb", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#4191d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d6", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#41d8b1", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#415dd8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#a641d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#cdd841", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#41d8b1", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#a641d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#4b41d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#5841d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#cdd841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4143d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#6541d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#6c41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841a9", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d841a2", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#41d870", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#4156d8", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#4b41d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#4150d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#5241d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#c741d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d441d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d841af", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#d8418f", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#41d8b1", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#4541d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#5f41d8", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#a641d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#a641d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_battery_info", "color": "#d88f41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#bad841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#41d8b1", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41b8d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#415dd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#a641d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#b341d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d6", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d841d0", "style": "dashed"}, {"source": "m_vectornav", "target": "t_estimator_status", "color": "#a6d841", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_baro", "color": "#4149d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_gps", "color": "#4b41d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_selection", "color": "#6541d8", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#c7d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#6cd841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#7241d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#9341d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d6", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841c9", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8414e", "style": "dashed"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d87b41", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#b3d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#a6d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#65d841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d8ab", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#8641d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84161", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#4143d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d84182", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#d84154", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d87541", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#65d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d84168", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d87541", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d841d0", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8a941", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#45d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d84195", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d84741", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85441", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89541", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8b641", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#cdd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#c7d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#bad841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#b3d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#add841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#a6d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#a0d841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#99d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#58d841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d87d", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8b8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8c5", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8cb", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d2d8", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41c5d8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41bed8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#4184d8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#417dd8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#4163d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#415dd8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#4150d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#4149d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#4541d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#4b41d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#5841d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#6541d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#6c41d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#7941d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#8c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d841a2", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d84168", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8414e", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#8cd841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#6cd841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8cb", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#7241d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#9341d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84161", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d8415b", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8bc41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#4bd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#41d891", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d897", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d841d0", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d87b41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#d88241", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#c7d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d89e", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d8ab", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4143d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#6541d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#6c41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84154", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#bad841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#65d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d84168", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#7f41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d841d6", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d84168", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#d88241", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d88841", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#72d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#d841d6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#d88241", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#7fd841", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#79d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#6cd841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8a4", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8be", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#d88241", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8c5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#418ad8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#9941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d89541", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d8af41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#45d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#41d843", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#41d856", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41d85d", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8c5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#418ad8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d8416e", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d870", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#4150d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#4541d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#5241d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d84168", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#4150d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d87b41", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#d89541", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#bad841", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#41d87d", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#65d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#d88241", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d8ab", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#418ad8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#6541d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#7f41d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#9941d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d841a2", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84161", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d88a", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d84195", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#c0d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#d84741", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#c7d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#41d89e", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#4143d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#d84182", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#d84154", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89541", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8c5", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#c041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d84168", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#5841d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d84168", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8cb", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d85b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d86141", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d87b41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#d88241", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d88841", "style": "normal"}, {"source": "t_battery_info", "target": "m_mavlink", "color": "#d88f41", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89541", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d89c41", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d8a241", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8a941", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d8b641", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d8c341", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8c941", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8d041", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8d641", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d4d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#cdd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#c7d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#bad841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#b3d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#add841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#a6d841", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#99d841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#93d841", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#86d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#58d841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#45d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#41d843", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#41d849", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#41d850", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#41d863", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#41d86a", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#41d870", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d877", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d87d", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d884", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d89e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8c5", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d8cb", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41d8d8", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41d2d8", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#41cbd8", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41b8d8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#419ed8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#4191d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#418ad8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#4170d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#4163d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#4156d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#4149d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#4541d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#4b41d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#5841d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#6541d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#8641d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#a041d8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#b341d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#ba41d8", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#c741d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d441d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d841d6", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d841a2", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84188", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d84161", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d88841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d841d6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d84e41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d8415b", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#9941d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d84195", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89541", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8af41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8c341", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#52d841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d87d", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d89e", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d8d8", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#4197d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#4191d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#416ad8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#a041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84147", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#4bd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#41d891", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#41d897", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#d841d0", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#4bd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d891", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d897", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d841d0", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#4bd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#41d891", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d897", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d841d0", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#d87541", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d89541", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d84168", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d884", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8cb", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#4177d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41d8b1", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#41d8b1", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#41d8b1", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#41d8b1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#418ad8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#9941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#d841d6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#d84195", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#d84741", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d89541", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8b641", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#93d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d841af", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d441d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841af", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d87541", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#cdd841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#add841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#4150d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#4541d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#5841d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#5f41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#6541d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d841a2", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#41d870", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d85b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d86141", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#4150d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#4149d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#5241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#5841d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d841d0", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#a641d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#4bd841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#41d870", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#41d87d", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#41d891", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d897", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#41d8b1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8c5", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#41b1d8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#41abd8", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#41a4d8", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#a641d8", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#ad41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d84168", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#d841d6", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#d84175", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#9941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841c9", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#d88241", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#5fd841", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d87d", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#41d8d2", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#418ad8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#8641d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#cd41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d84195", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84188", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d84168", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250_i2c", "name": "mpu9250_i2c", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_icm20608g", "name": "icm20608g", "type": "Module", "color": "#666666"}, {"id": "m_vectornav", "name": "vectornav", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_fake_gps", "name": "fake_gps", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_mpu9250", "name": "mpu9250", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#c6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#a5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#41d873", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#d89641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#bfd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#d8415b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41d852", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#7741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#a541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84182", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#4941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#d85b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d841ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#41d879", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#41d86c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#41d8c1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#41d5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#ccd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#b2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#41d84b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#d841d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#91d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41d89a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#41aed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#4173d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#d8ca41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#84d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#41d866", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#41d8c8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#9141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#d84189", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#d3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#414bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#ab41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#cc41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#d88f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#63d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#56d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#49d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41ced8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#419ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d88241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#4186d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#7e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#d88941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#50d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#41d8ce", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#41d8d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#6341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#8b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841d7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#8bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#77d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#41d859", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#5641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#b941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#d8419c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#41d8ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#5d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#d841a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#71d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#41bbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#4180d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#7141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#9841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#d341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#d84161", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#d8d141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#98d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#41d85f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#41d8a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4193d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#4179d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#4159d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#d89c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#abd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#41d886", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#41d893", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#41a7d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#b241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#c641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#d841a3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d84196", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#b9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#41d880", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#416cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#d841b0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#d8418f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d88d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#41c1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#41a1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#4166d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#415fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#d8b041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8d741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#9ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#41d8bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#418dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#5041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#d8a341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#d8a941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d8c441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#41c8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#8441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#7ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#5dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#4152d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#bf41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#d86141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#9e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_ads1115", "target": "t_adc_report", "color": "#d8c441", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d8c441", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#41a1d8", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#41d893", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d84196", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d84196", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#d88f41", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#d88f41", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#d88f41", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#d8a341", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#9841d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#416cd8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#4145d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#abd841", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#41a7d8", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#4159d8", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#41c8d8", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#41a7d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#41c8d8", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#4159d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_icm20608g", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_mpu9250", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_mpu9250_i2c", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_selection", "color": "#71d841", "style": "dashed"}, {"source": "m_vectornav", "target": "t_estimator_status", "color": "#d341d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_gps", "color": "#41c8d8", "style": "dashed"}, {"source": "m_vectornav", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#d8418f", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#50d841", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#50d841", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#50d841", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#50d841", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#50d841", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#9841d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#416cd8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#4145d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#abd841", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#41d893", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#7ed841", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#9841d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#416cd8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#4145d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#abd841", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#4152d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#6ad841", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#4166d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#41d893", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#d8a341", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#4166d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#d8a341", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41d89a", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#ab41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#9841d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#416cd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#4166d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#6ad841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#4145d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#abd841", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#5641d8", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#7141d8", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#41d893", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#c641d8", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#d89c41", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d84141", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841c4", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#9141d8", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#8bd841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#d841b0", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#416cd8", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#b9d841", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#4166d8", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#d86141", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#d86e41", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#abd841", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#4145d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#4186d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#91d841", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#4341d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#49d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#7141d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#41bbd8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#41d866", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#9e41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#d341d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#d3d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#ccd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#414bd8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#71d841", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#41d893", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#4166d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#6341d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#8b41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d88d", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#cc41d8", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#d8419c", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#7741d8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#d84189", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#9ed841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#d8b641", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d88d", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#a541d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#bfd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#43d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#d8bd41", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#415fd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#d8415b", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#5d41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#41d8ce", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#d841a3", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#41d879", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84182", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#5d41d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#cc41d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#d841a3", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#56d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#4941d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#d84e41", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#4179d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#6a41d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#41d5d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#41d8c1", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#63d841", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#d88941", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#bf41d8", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#41d866", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#414bd8", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_odometry", "color": "#41bbd8", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#d341d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8a1", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#5041d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#d8417b", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d88d", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#b241d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#d8ca41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#50d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d84147", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#6341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41ced8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d85441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#41d84b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#d85b41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#7141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41d852", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#41c8d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#d86841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#d88941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#d86141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#d88f41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#7e41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#41d859", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#419ad8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#41d866", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#418dd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#cc41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#4180d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#41d880", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8d741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d841b6", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#41d893", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#4173d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#b2d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#4166d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#41d8b4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#4159d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#4152d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#d8418f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#414bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#4941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#98d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#d8416e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#d84168", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d84154", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#d8414e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#5dd841", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#cc41d8", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#7741d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#41d886", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#6341d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#41d84b", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84182", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#8b41d8", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d87541", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#cc41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d84141", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d84741", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#d86841", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#d87b41", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#41b4d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#41d859", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#d8a941", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#41d866", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#41d873", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#d841d1", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#d8d141", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#d841a9", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#b9d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#41d8b4", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#d84161", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#63d841", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#d8417b", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#84d841", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#41d86c", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#41d8c8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#41d84b", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4193d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#77d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#41d8bb", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#b941d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#71d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#d88f41", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#5dd841", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#9841d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#416cd8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d88241", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#4145d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#abd841", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#41d845", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#41c8d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#8441d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d841ca", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#d8b041", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#c6d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#41d8a7", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#41c1d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#a5d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#5dd841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#d89641", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#41d8ae", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#84d841", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#41d8c8", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#41d84b", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#41d85f", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#41d8c8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#84d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#41d84b", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#5d41d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#d841a3", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#41d8d5", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#41aed8", "style": "dashed"}, {"source": "m_actuator_test", "target": "t_actuator_test", "color": "#416cd8", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#4166d8", "style": "dashed"}, {"source": "m_fake_gps", "target": "t_sensor_gps", "color": "#41c8d8", "style": "dashed"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d8c441", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#41d85f", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#41d85f", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#414bd8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#abd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d84141", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#41d873", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#41d85f", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#41d88d", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#4179d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#416cd8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#d8419c", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#4145d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#4186d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#abd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#d8ca41", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#4159d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#4159d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#41c1d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#d841bd", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#d841bd", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#d841bd", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#41d85f", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#41d88d", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#4179d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#416cd8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#d8419c", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#4145d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#4186d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#abd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d84141", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#d84189", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#41d85f", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d88d", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#4179d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#416cd8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#d8419c", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#4145d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#4186d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#abd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#41d85f", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#41d893", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#7141d8", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#d8c441", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#abd841", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#41d893", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d84141", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#41d893", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#41d866", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#414bd8", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#d8a341", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#41d893", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#b9d841", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#5dd841", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d84141", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#7e41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#41d85f", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#419ad8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#4186d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#d8ca41", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#d841bd", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#41d88d", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#4179d8", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#4173d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#416cd8", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#b9d841", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#4166d8", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#b2d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#4159d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#414bd8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#d8419c", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#4145d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#abd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#41d8c8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#ccd841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#414bd8", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#5dd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#63d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#d84189", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#d341d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#9ed841", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d841b6", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#4193d8", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#d85441", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d84141", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#d84189", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d8c441", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#41d866", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#7141d8", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#4941d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#49d841", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41ced8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#41c8d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#41d845", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#d86141", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#7141d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#41c1d8", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#d87b41", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#d88f41", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#6ad841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#8441d8", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#d8a341", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#d8b041", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#41d85f", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#41a1d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#41d866", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#9e41d8", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#b241d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#b941d8", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#bf41d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#d341d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841d7", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#d8d141", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#41d893", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#d3d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#ccd841", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8a1", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#41d8a7", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#d841a9", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#b9d841", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#41d8ae", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#414bd8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#4145d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#abd841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#d8417b", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#8bd841", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#d8416e", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#5641d8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#7ed841", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#d84161", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#77d841", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#41d8d5", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#71d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#41d8c8", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#9141d8", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#84d841", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#5d41d8", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#d841a3", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#41aed8", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#41d8b4", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#41d85f", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#5641d8", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#41d8a7", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d85441", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4193d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#41d8bb", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#77d841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#71d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#d88941", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#63d841", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#5dd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d84141", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#d8a341", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#d84189", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#d89c41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#41d85f", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#41d893", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#bf41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#41d85f", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#41d886", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841c4", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#5641d8", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#414bd8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#7741d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#63d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841c4", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#d8b641", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#9e41d8", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#a541d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#5641d8", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#41d879", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#7141d8", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#d8415b", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d84141", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#41d85f", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#6341d8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#9e41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#41d866", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#5641d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#63d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841c4", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#91d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#41d893", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#5641d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#4941d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d84741", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#41d85f", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#41d866", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#7141d8", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41d852", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#d8414e", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#63d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d84141", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#41c1d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#d8b041", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#41d8ae", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d84141", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#41d8c8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#41d886", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#6341d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#41d866", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#5641d8", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#b941d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#71d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#414bd8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#abd841", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#41d85f", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#d88941", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#d841b6", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#41d8a7", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#4193d8", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#d85441", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#63d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#abd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d84141", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#98d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#41d85f", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#41d893", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d84141", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#8441d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#d8417b", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#b241d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d84141", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#d84e41", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#d86141", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#d86e41", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#d86841", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#d87b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d88241", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#d88941", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#d88f41", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#d89641", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#d89c41", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#d8a341", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#d8ca41", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#d8d141", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8d741", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#c6d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#ccd841", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#b9d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#abd841", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#a5d841", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#9ed841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#71d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#63d841", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#5dd841", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#56d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#49d841", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#41d845", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#41d84b", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#41d859", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#41d85f", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#41d866", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#41d86c", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#41d880", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41d89a", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#41d893", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#41d8a7", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#41d8ae", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#41d8bb", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#41d8c8", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#41d8ce", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#41d5d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#41c8d8", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#41bbd8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#41a7d8", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#418dd8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#415fd8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#4159d8", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#4152d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#414bd8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#4341d8", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#4941d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#5041d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#5641d8", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#6a41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#7141d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#7741d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#8441d8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#ab41d8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#9841d8", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#9e41d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#b941d8", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#c641d8", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#bf41d8", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#cc41d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841d7", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841c4", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#d841b0", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#d841a9", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84182", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#d8417b", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#d84168", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d84154", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#414bd8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#7741d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#63d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#84d841", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d87541", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841c4", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#6341d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#8b41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841c4", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#91d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#41d893", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d84141", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#41d859", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#d8a941", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#41d85f", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#d88941", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#41d866", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#9e41d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#41d86c", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#bfd841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#b9d841", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#414bd8", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#41b4d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#63d841", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#4341d8", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#4180d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#d8417b", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#4152d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#d841c4", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#6341d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#41d866", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#414bd8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#50d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#49d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841c4", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#d8b041", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#41c1d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#41d8bb", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#41d8ae", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#b941d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#71d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#d88f41", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d8c441", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#8441d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#41d85f", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#41d88d", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#4179d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#416cd8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#d8419c", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#4145d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#4186d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#abd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#d8ca41", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#a5d841", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#a5d841", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#a5d841", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#9841d8", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d88241", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#41d85f", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#d8b041", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#41d845", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#41c1d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#8441d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#6341d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d85b41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#41d85f", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#b241d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841c4", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#b9d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84182", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#9ed841", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d84175", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#5641d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#63d841", "style": "normal"}]} \ No newline at end of file diff --git a/docs/public/middleware/graph_px4_fmu-v5.json b/docs/public/middleware/graph_px4_fmu-v5.json index 0ac93836b9d5..7173a0525ba8 100644 --- a/docs/public/middleware/graph_px4_fmu-v5.json +++ b/docs/public/middleware/graph_px4_fmu-v5.json @@ -1 +1 @@ -{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_pwm", "name": "rgbled_pwm", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20689", "name": "icm20689", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi055", "name": "bmi055", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_atxxxx", "name": "atxxxx", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_sht3x", "name": "sht3x", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#c941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#c3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d841ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8b8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#419fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#d8418d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41d858", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d88741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#7cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84187", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#49d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#41d89f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#63d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#41d8cb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#4172d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#83d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#41d852", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d84d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#41d84b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#4198d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#b6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#76d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#41b8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#4192d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d841d4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8ae41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41bfd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#9641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#b041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#90d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#69d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d8a5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8bf", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8c5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84161", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d8415a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#a3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#b641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d84194", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d84181", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d84174", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#d0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#b0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#41d85e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41c5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#41b2d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d8419a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d86141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d86741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#41abd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841ba", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#89d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d898", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#6341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#9c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841c7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841c1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8414d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#d88141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d892", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#418bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#7041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#a341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d841a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#41d865", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#41d2d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#4165d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_hygrometer", "name": "sensor_hygrometer", "type": "topic", "color": "#5641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#7641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d85a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8c141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#a9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41cbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#4178d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#6941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#9041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d8417a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8ba41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8ce41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#c9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#5cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#56d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#4fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d86b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#c341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d841ce", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d89a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8a741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#96d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#70d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#4158d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#8341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d84167", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d86d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d8a141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d872", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d878", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d885", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8b2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#415ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_battery_info", "name": "battery_info", "type": "topic", "color": "#d88d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d88b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#41a5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#417ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#4152d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#7c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#a941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8c741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8d441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41d8ab", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#414bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#4f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#8941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#bc41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d8416d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d87441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#bcd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#416bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#4941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#5c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#4185d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d87a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d87e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8b441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d8d2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#9cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#d87441", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#d88141", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#d041d8", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_info", "color": "#d88d41", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_info", "color": "#d88d41", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d87441", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#7c41d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d8a741", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d89a41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8a741", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#9cd841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#96d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#90d841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d872", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d878", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41d8ab", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#418bd8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#4172d8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841ba", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d84167", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d86741", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8ae41", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#41d87e", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8c141", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d85a41", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#bcd841", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#41d87e", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#b6d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#b0d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#a9d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#a3d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#6941d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d041d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841b4", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d84194", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d8417a", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84147", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d88b", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#9c41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841c1", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d892", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88741", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#69d841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#8941d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#89d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#83d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#7cd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#76d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#70d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d88b", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#41d89f", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d8a5", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8b8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#41a5d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#419fd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#7641d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84187", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#70d841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#7641d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#41d87e", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#4fd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#49d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#41d845", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#41d84b", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#41d85e", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#41d865", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#41d2d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d86b", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#4158d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#4941d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#bcd841", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#41d885", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d8419a", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d898", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#41d8ab", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8b441", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8b2", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#bc41d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d88b", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8bf", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8c5", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d84167", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d87a41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d8a141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8ba41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8c741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8ce41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8d441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d6d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#d0d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#9cd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#63d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#49d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#43d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#41d852", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41d858", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#41d86b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d87e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#41d885", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d898", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#41d8cb", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41d8d2", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41c5d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#41b8d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#41b2d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#41abd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#4178d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#4941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#9041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#9c41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#a341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#b041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#c341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d841d4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d841b4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d84194", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84181", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84154", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88741", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#8341d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#9c41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d4", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841c1", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84187", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d84d41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84174", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#d0d841", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#d0d841", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8ba41", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#c3d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#5cd841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#56d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d878", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d8d2", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d8d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41cbd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#4192d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#416bd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#4165d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#a341d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841b4", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d8419a", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d8416d", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d84167", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#d85a41", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#4185d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d85a41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d85a41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d86141", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d85a41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d87e", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#41d8ab", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#417ed8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#415ed8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d87e", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8c5", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#4198d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d4", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415a", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#41d8ab", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#415ed8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#41d87e", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#d0d841", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#41d8ab", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#4941d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#5c41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d87a41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#d0d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4145d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#6941d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#7041d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841a7", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d841a1", "style": "dashed"}, {"source": "m_sht3x", "target": "t_sensor_hygrometer", "color": "#5641d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d87a41", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#4152d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#4f41d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#c941d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d641d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d841ae", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#d8418d", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#414bd8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#41d8ab", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#4341d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d85a41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#d86d41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_battery_info", "color": "#d88d41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#bcd841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#41d8ab", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41bfd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#415ed8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#a941d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#b641d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415a", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d4", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d841ce", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#c9d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#70d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#7641d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#9641d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d4", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841c7", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415a", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8414d", "style": "dashed"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d87a41", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#b6d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#a9d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#69d841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d8a5", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#8941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d84167", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84161", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#4145d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d84181", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#d84154", "style": "normal"}, {"source": "t_battery_status", "target": "m_atxxxx", "color": "#d89441", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_atxxxx", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_atxxxx", "color": "#d84167", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d87441", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#69d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d84167", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d87441", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#d89441", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d841ce", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8a741", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#49d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d84194", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d84741", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85441", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#d88141", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89441", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8b441", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#d0d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#c9d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#bcd841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#b6d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#b0d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#a9d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#a3d841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#9cd841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#5cd841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d878", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8b2", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8bf", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8c5", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d8d8", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41cbd8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41c5d8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#418bd8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#4185d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#4165d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#415ed8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#4152d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#4f41d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#5c41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#6941d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#7041d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#7c41d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#9041d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841c7", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d84167", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8414d", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#90d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#70d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8c5", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#7641d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#9641d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d84167", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84161", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d8415a", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#d89441", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#d84167", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8ba41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d86741", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#d86d41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#4fd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#41d88b", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d892", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#d84167", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d87a41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#d88141", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#c9d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d898", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d8a5", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#6941d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#7041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d84167", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84154", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#bcd841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#69d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d84167", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#8341d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d84167", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#d89441", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d84167", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#d88141", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d88741", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#76d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d84167", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d84167", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#d88141", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#83d841", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#7cd841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#70d841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d89f", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8b8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d84167", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#d88141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8bf", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#4192d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#9c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d84167", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#d88141", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d89441", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d8ae41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d84174", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d84167", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#d89441", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#49d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#43d841", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#41d852", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41d858", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8bf", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#4192d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d8416d", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d86b", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#4152d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#4f41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d84167", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#4152d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d87a41", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#d89441", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#bcd841", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#41d878", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#69d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d84167", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#d88141", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d8a5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#4192d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#6941d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#8341d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#9c41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d84167", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84161", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d885", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d84194", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#c3d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d84167", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89441", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8bf", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#c341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d84167", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#5c41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d84167", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8c5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d84167", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d85a41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d86141", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d87a41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#d88141", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d88741", "style": "normal"}, {"source": "t_battery_info", "target": "m_mavlink", "color": "#d88d41", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89441", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d89a41", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d8a141", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8a741", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d8b441", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d8c141", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8c741", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8ce41", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8d441", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d6d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#d0d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#c9d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#bcd841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#b6d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#b0d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#a9d841", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#9cd841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#96d841", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#89d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#5cd841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#49d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#43d841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#41d845", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#41d84b", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#41d85e", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#41d865", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#41d86b", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d872", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d878", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d87e", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d898", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8bf", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d8c5", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41d8d2", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41d8d8", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#41d2d8", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41bfd8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#41a5d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#4198d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#4192d8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#4172d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#4165d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#4158d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_hygrometer", "target": "m_mavlink", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#5c41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#6941d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#8941d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#a341d8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#b641d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#bc41d8", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#c941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841c7", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#d8418d", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84187", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d8417a", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d84174", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d84167", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d84161", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d88741", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d84167", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d84d41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d84167", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d8415a", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#9c41d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841c1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d84194", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89441", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8ae41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d84174", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d84167", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#d88141", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d89441", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41d878", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d87e", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d84167", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8c141", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#56d841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d878", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d898", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d8d2", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#419fd8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#4198d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#416bd8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#a341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d84167", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84147", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#d86741", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#d86d41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#4fd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#41d88b", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#41d892", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#d841ce", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d86741", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d86d41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#4fd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d88b", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d892", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d841ce", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d86741", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#d86d41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#4fd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#41d88b", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d892", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d841ce", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d86741", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d86d41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#4fd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#41d88b", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#41d892", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d8bf", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#417ed8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d84167", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#d87441", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d89441", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d84167", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d87e", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8c5", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#4178d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41d8ab", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#41d8ab", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#41d8ab", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#41d8ab", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_pwm", "color": "#41d8ab", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#4192d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#9c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#d841b4", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#d84194", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#d84741", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d89441", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8b441", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#96d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d84167", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d8418d", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d641d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841ae", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d87441", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#d0d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#b0d841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#4152d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#4f41d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#5c41d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#6341d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#6941d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d841a1", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d85a41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d86141", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#4152d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#4f41d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#5c41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d841ce", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#a941d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d86741", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#d86d41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#4fd841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#41d86b", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#41d878", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#41d88b", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d892", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#41d8ab", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8bf", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#41b8d8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#41b2d8", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#41abd8", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#a941d8", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#b041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d84167", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#41d8bf", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#d841d4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#d84174", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#9c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841c7", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#d88141", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#63d841", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d878", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#41d8cb", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#4192d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#8941d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#d041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d841ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841ba", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d84194", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84187", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d84167", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_pca9685_pwm_out", "name": "pca9685_pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_pwm", "name": "rgbled_pwm", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_pwm_input", "name": "pwm_input", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_icp101xx", "name": "icp101xx", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20689", "name": "icm20689", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_lps22hb", "name": "lps22hb", "type": "Module", "color": "#666666"}, {"id": "m_lps33hw", "name": "lps33hw", "type": "Module", "color": "#666666"}, {"id": "m_mpc2520", "name": "mpc2520", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp280", "name": "bmp280", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_bmp581", "name": "bmp581", "type": "Module", "color": "#666666"}, {"id": "m_dps310", "name": "dps310", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi055", "name": "bmi055", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_atxxxx", "name": "atxxxx", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_spa06", "name": "spa06", "type": "Module", "color": "#666666"}, {"id": "m_spl06", "name": "spl06", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_sht3x", "name": "sht3x", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#41d87b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d8a141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#41d847", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#41d5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#4194d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#4147d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#d84174", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#aed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84161", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#d88141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#41d867", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#d841cf", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d841ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#d8419b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#4dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#417bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#bbd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#94d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#41d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#cfd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#5ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#41b5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#8841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#c841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41aed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#419bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#d841a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d87441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#d88e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#d8ae41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#8ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#81d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d8a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#41d8a8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#4154d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#9b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#d86141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d8bb41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#4167d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#ae41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d8c841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#b5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#41bbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#4161d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#a841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#8e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d841c8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#d8418e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#d86741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8d541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#41d89b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d8bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#41a8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#d841d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#d84d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#67d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#54d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#41d8c2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#418ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#6141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_hygrometer", "name": "sensor_hygrometer", "type": "topic", "color": "#d5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#9bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#41d894", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#41d8c8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#415ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#b541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#d88841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d8cf41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#41d854", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#41d861", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#41d8d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#416ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#6e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#bb41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#d841a8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#41d85a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#41d874", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#41d888", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#41d88e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#4188d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#4181d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#414dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#4d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#5a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#a141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#c241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d8a841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#a1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#61d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#47d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#41d881", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#41d8b5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#5441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#6741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#8141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d841c2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d841bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#c2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#7bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d86e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41a1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#4174d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#d8415a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#c8d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#a8d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#74d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#41c8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#41c2d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#d84188", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d89441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#d8c241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#88d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#6ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#41d8cf", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41cfd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d84194", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#d84167", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8414d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#d85a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#d89b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#41d8ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#4141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#7441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#9441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_pwm_input", "name": "pwm_input", "type": "topic", "color": "#d841b5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d8b541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#7b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#41d84d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#4741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#cf41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84181", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_ads1115", "target": "t_adc_report", "color": "#7441d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#7441d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#41c8d8", "style": "dashed"}, {"source": "m_bmp280", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_bmp581", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_dps310", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_spa06", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_spl06", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_icp101xx", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_lps22hb", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_lps33hw", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_mpc2520", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#41d881", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d841bb", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d841bb", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#a841d8", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#a841d8", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#a841d8", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#4d41d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#d841c2", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#bb41d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#d89b41", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#41d8ae", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#5441d8", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#414dd8", "style": "dashed"}, {"source": "m_sht3x", "target": "t_sensor_hygrometer", "color": "#d5d841", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_bmi055", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_icm20689", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#d8415a", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#d841d5", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#d841d5", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#d841d5", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#d841d5", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#d841d5", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_motors", "color": "#4d41d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_armed", "color": "#d841c2", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_outputs", "color": "#bb41d8", "style": "dashed"}, {"source": "m_pca9685_pwm_out", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#41d881", "style": "dashed"}, {"source": "m_pwm_input", "target": "t_pwm_input", "color": "#d841b5", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#4d41d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d841c2", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#bb41d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#a8d841", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#4d41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#41cfd8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#c2d841", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#d841c2", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#bb41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#7b41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#7b41d8", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#7b41d8", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#7b41d8", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#7b41d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#7b41d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#41cfd8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#c2d841", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#41d881", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#d89b41", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41aed8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#4167d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#4d41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#41cfd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#c2d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#d841c2", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#bb41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#d89b41", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#54d841", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#41d861", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#41d881", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#41d8b5", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#d87b41", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#cf41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#8e41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41cfd8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d8a841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d86e", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#d84d41", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d841c2", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#d8ae41", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#6741d8", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#4174d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d8416e", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#4d41d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d541d8", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#41d8d5", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#d84741", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#d86141", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#d88841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#416ed8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#4154d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#41d861", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d8bb41", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d8cf41", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84181", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#d84154", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#41d881", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#41cfd8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d86e41", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#74d841", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#d86741", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#67d841", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#ae41d8", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d8417b", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#81d841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#41d8cf", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#d88141", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#61d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#41a8d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d8a1", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#41d8c8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#c8d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#cfd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#4dd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#4194d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#74d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#4147d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#aed841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#61d841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#ae41d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#41d8c8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#41d894", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#9bd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#94d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#41d867", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#d84141", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#41d888", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#b5d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d8c841", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d8bb", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#41d84d", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41a1d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#6ed841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#a1d841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#8ed841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#d88e41", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d8a841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#74d841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#7b41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#41d8c2", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#8841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#9441d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d85441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#a841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#ae41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#41bbd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#d86741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#c841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#cf41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#5ad841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#d841d5", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#d841cf", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#419bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#4181d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#417bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#41d854", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#4161d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#41d85a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#41d867", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#41d861", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#d8419b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#4154d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d84194", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#414dd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#41d881", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#d8418e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d8b541", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d8bb41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#41d8a8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#d84174", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#4741d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#41d8ae", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#d8415a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#5a41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8414d", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#6e41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d8bb", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d84147", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#ae41d8", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d8417b", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#c841d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#8141d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#d86741", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d86e41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#bbd841", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#ae41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#41d8c2", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#88d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#41b5d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#47d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#41d847", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#4181d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#4174d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#d841a8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#415ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#4154d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d8a841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#41d874", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#41d88e", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d8c841", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#4141d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#4741d8", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#8ed841", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#c841d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d87441", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#41d841", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#9b41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#d88841", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#418ed8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d89441", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#a841d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#a141d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#6141d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d8b541", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#4d41d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d841c8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#d841c2", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#bb41d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#d84167", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#41d8ae", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#d85a41", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d841ae", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#41d5d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#41c2d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#41d87b", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d8b541", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#4188d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d8a141", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#d8c241", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#41cfd8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#b541d8", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d87441", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#9b41d8", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#c841d8", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#c241d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#c841d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#61d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#41d89b", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8d541", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#41d8c8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#d841a1", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#9b41d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d87441", "style": "dashed"}, {"source": "m_actuator_test", "target": "t_actuator_test", "color": "#7bd841", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#41cfd8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#d84188", "style": "dashed"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#7441d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#c241d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d841c2", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#41d847", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d8a841", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#67d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d8416e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#d88e41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#4d41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#d841c2", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#7bd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#41d888", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#74d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#c241d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#414dd8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#41c2d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41cfd8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#41cfd8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#41cfd8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#41cfd8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_pwm", "color": "#41cfd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_atxxxx", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_atxxxx", "color": "#d8bb41", "style": "normal"}, {"source": "t_battery_status", "target": "m_atxxxx", "color": "#41d881", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#54d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d8a841", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#41d881", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#7b41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d8bb41", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#4174d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pca9685_pwm_out", "color": "#67d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pca9685_pwm_out", "color": "#d8416e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pca9685_pwm_out", "color": "#d88e41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pca9685_pwm_out", "color": "#4d41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pca9685_pwm_out", "color": "#d841c2", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pca9685_pwm_out", "color": "#7bd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pca9685_pwm_out", "color": "#41d888", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pca9685_pwm_out", "color": "#74d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pca9685_pwm_out", "color": "#c241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#81d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d8a841", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#67d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d8416e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#d88e41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#4d41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d841c2", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#7bd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#41d888", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#74d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#c241d8", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#a8d841", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#67d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d8416e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#d88e41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#4d41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d8a841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#d841c2", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#7bd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#41d888", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#74d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#d8a841", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#c241d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#41d881", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#7441d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d8a841", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#c241d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#d841c2", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#41d861", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d8a841", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#d8bb41", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#41d881", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d8b541", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#d89b41", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#4174d8", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#d84188", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#8841d8", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#41cfd8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#41bbd8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#7bd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#74d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#c241d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#67d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#d88e41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#d841c2", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#419bd8", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#4174d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d8a841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#414dd8", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#d8418e", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#41d888", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d8bb41", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#d84188", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#d8c841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d8416e", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#4d41d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#416ed8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d8c841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d8a1", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#41d8cf", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d8a841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#d84741", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#81d841", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d87441", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d8b541", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#41d8a8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d85441", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#a141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#d8bb41", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#7441d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#81d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#4154d8", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d841bb", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#41d867", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#a1d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#8ed841", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#41c8d8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#d84741", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#d84d41", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#41c2d8", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#a841d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#d85a41", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#b541d8", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#d86141", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#c241d8", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#cf41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#d88841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#54d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#d88e41", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#47d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d841c2", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41a1d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#418ed8", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#d89b41", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#4188d8", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#41d84d", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#4174d8", "style": "normal"}, {"source": "t_pwm_input", "target": "m_commander", "color": "#d841b5", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#416ed8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#4161d8", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#d841a8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#415ad8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d8a841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#41d874", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d8bb41", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#d8c241", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d8c841", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#41d89b", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8d541", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84181", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#d84167", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#41d8ae", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#4d41d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#c2d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#d84154", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#6141d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#6e41d8", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#61d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#8ed841", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#41d8c8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#8e41d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#9b41d8", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#d8ae41", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d87441", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#4181d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d8c841", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#41d8a8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#54d841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#d88841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d8a1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d8a841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#4188d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d89441", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#a141d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#6141d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d8b541", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d8bb", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#c241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#81d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#d89b41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d8a841", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#41d881", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#6741d8", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#41d84d", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#c841d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#8141d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d8c841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#c841d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d8c841", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d8417b", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#54d841", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#cfd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d8bb41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d8a841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#61d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d8c841", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84181", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#d88141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#54d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d8a841", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#4dd841", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#4147d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d8bb41", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#aed841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d8c841", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84181", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#54d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#4154d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d8a841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#d86741", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#41b5d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d8c841", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d541d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#54d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#ae41d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d8c841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#5ad841", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#d84174", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#41d861", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#41d867", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#88d841", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#41b5d8", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#417bd8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#c241d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#41c2d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d8a841", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#d8c241", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#b541d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#41b5d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#8141d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#d88841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#54d841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d8a1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#4154d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d8a841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d841c2", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#d86741", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#418ed8", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d87441", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#41d861", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#d8415a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d8bb41", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#41d85a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d8a841", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d8a841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#d85a41", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#a1d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d8a841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#8ed841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#d84141", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#d85a41", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d87441", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#d87b41", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#d88841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#d88e41", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8414d", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d89441", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#d89b41", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d8a141", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d8a841", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d8b541", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d8c841", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d8cf41", "style": "normal"}, {"source": "t_sensor_hygrometer", "target": "m_mavlink", "color": "#d5d841", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#c8d841", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#b5d841", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#9bd841", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#94d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#8ed841", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#6ed841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#5ad841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#54d841", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#41d841", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#47d841", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#41d84d", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#41d861", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#41d867", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d86e", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#41d874", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#41d87b", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#41d881", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#41d894", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#41d89b", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#41d8ae", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#41d8b5", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d8bb", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#41d8c2", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#41d5d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#41d8cf", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#41d8d5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#41b5d8", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41aed8", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#41a8d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#418ed8", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#4188d8", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#4174d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#416ed8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#4167d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#415ad8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#4154d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#414dd8", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#4741d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#5441d8", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#5a41d8", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#6741d8", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#9441d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#8e41d8", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#a841d8", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#ae41d8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#bb41d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#b541d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#c841d8", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#cf41d8", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d841c8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d841c2", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d841bb", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d841ae", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d84194", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d84181", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84161", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#d84167", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#d84154", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#7b41d8", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#c841d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d8c841", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d8bb41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#9b41d8", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#bbd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d8c841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#d86741", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d86e41", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d8c841", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d541d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#ae41d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#41d881", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d8c841", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84181", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#41d8c2", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d8bb", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#4741d8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#4154d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#4141d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d8a841", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#41d841", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#4194d8", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#41d88e", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d8bb41", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#4174d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#c241d8", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#7b41d8", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#41d854", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#8ed841", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#c841d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#4154d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#41d861", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#d86741", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#41b5d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#d8bb41", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#7441d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#d88841", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#d841d5", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#8e41d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#b541d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#41c2d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d89441", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#d84154", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#a841d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#d85a41", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#418ed8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#d8c241", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#67d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d8416e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#d88e41", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#4d41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#d841c2", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#7bd841", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#41d888", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#74d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d8a141", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d8a141", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#41d5d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d8a141", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d841c8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#bb41d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#d84167", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#41c2d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#d85a41", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#d8c241", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#c241d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#c841d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#d88e41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#ae41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#41d861", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#d86741", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#41d89b", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#a1d841", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#41d8cf", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#8e41d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#41b5d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#c241d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#54d841", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d841cf", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#4174d8", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d8419b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#41d861", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d8bb41", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d8c841", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84161", "style": "normal"}]} \ No newline at end of file diff --git a/docs/public/middleware/graph_px4_fmu-v5x.json b/docs/public/middleware/graph_px4_fmu-v5x.json index 9b12ca438646..cd5dbf7280a1 100644 --- a/docs/public/middleware/graph_px4_fmu-v5x.json +++ b/docs/public/middleware/graph_px4_fmu-v5x.json @@ -1 +1 @@ -{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_hardfault_stream", "name": "hardfault_stream", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_adis16507", "name": "adis16507", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#cc41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#bfd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d841a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8c8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#418dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#d84189", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41d85f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d88941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#77d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84182", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#41d8ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#5dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#41d5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#416cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d841d7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#7ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#41d859", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#41d84b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#41d852", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#b2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#71d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#41a7d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#4186d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d841d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8b041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41aed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#9841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#b241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#8bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#63d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8ce", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841b0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84161", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d8415b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#9ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#b941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d8418f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#ccd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#abd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#41d866", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#41a1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d84196", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d86141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#419ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#84d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d8a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#6341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#9e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#d88241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d8a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#4180d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#7141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#a541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d8419c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#41d86c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#41c1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#415fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#4941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#7741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d85b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8c441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#a5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41bbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#4173d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#9141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8d141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#c6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#56d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#50d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#49d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d873", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#c641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d841ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d89c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8a941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#91d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41c8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#4152d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#8441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d8a341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d880", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d886", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d893", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8c1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#4159d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_battery_info", "name": "battery_info", "type": "topic", "color": "#d88f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d89a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#4193d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#4179d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#414bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#7e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#ab41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8ca41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8d741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41d8bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#5641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#8b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#bf41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841a3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#b9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#4166d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#5041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#5d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d88d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#41d879", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41ced8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#98d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#d87541", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#d88241", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_info", "color": "#d88f41", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_info", "color": "#d88f41", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d87541", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#7e41d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d8a941", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d89c41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8a941", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#98d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#91d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#8bd841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d880", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d886", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41d8bb", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#4180d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#416cd8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841b6", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d86841", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8b041", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#41d88d", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8c441", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#b9d841", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#41d88d", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#b2d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#abd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#a5d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#9ed841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#6a41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d341d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841b0", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d8418f", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d8417b", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84147", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d89a", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#9e41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841bd", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d8a1", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88941", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#63d841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#8b41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#84d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#7ed841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#77d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#71d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#6ad841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d89a", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#41d8ae", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d8b4", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8c8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#4193d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#418dd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#7741d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84182", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#6ad841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#7741d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#41d88d", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#49d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#43d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#41d84b", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#41d852", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#41d866", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#41d86c", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#41c1d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d873", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#4152d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#b9d841", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#41d893", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d84196", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d8a7", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#41d8bb", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8b641", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8c1", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#bf41d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d89a", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8ce", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8d5", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d8a341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8bd41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8ca41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8d141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8d741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d3d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#98d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#5dd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#43d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#41d845", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#41d859", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41d85f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#41d873", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d88d", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#41d893", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d8a7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#41d5d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41ced8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41b4d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#41a7d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#41a1d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#419ad8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#4173d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#9141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#9e41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#a541d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#b241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#c641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d841d1", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d841b0", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d8418f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84154", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88941", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#8441d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#9e41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d1", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841bd", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84182", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d84e41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8bd41", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#bfd841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#56d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#50d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d886", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41ced8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41c8d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41bbd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#4186d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#4166d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#415fd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#a541d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841b0", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d84196", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d8416e", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#41d879", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d86141", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d88d", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#41d8bb", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#4179d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#4159d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d88d", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8d5", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#41d8bb", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#4159d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#41d88d", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#41d8bb", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#5d41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4341d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#6a41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#7141d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841a3", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d8419c", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#cc41d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d841d7", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d841a9", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#d84189", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#41d8bb", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#4941d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#6341d8", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#d86e41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_battery_info", "color": "#d88f41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#b9d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#41d8bb", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41aed8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#4159d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#ab41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#b941d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d841ca", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#6ad841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#7741d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#9841d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d1", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841c4", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8414e", "style": "dashed"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d87b41", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#b2d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#a5d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#63d841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d8b4", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#8b41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84161", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d87541", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d84168", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d87541", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d841ca", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8a941", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d8418f", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d84741", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85441", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89641", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8b641", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#ccd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#c6d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#b9d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#b2d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#abd841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#a5d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#9ed841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#98d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#56d841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d886", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8c1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8ce", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8d5", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41c8d8", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41bbd8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41b4d8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#4180d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#415fd8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#4159d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#5d41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#6a41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#7141d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#7e41d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#9141d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d84168", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8414e", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#8bd841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#6ad841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8d5", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#7741d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#9841d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84161", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d8415b", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#d84168", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8bd41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#49d841", "style": "normal"}, {"source": "t_gripper", "target": "m_dshot", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#41d89a", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d8a1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d87b41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#d88241", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#c6d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d8a7", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d8b4", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#6a41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84154", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#b9d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d84168", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#8441d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d84168", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#d88241", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d88941", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#71d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#d88241", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#7ed841", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#77d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#6ad841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8ae", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8c8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#d88241", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8ce", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#4186d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#9e41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d89641", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d8b041", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#d89641", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#43d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#41d845", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#41d859", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41d85f", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8ce", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#4186d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d8416e", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d873", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#5641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d84168", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_hardfault_stream", "color": "#9141d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#414bd8", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#d87b41", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#d89641", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#b9d841", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#41d886", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d84168", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#d84168", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#63d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#d88241", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d8b4", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#4186d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#6a41d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#8441d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#9e41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84161", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d893", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d8418f", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#bfd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d84168", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89641", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8ce", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#c641d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d84168", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#5d41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d84168", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d85b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d86141", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d87b41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#d88241", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d88941", "style": "normal"}, {"source": "t_battery_info", "target": "m_mavlink", "color": "#d88f41", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89641", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d89c41", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d8a341", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8a941", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d8b641", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d8c441", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8ca41", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8d141", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8d741", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d3d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#ccd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#c6d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#b9d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#b2d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#abd841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#a5d841", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#98d841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#91d841", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#84d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#56d841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#43d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#41d845", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#41d84b", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#41d852", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#41d866", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#41d86c", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#41d873", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d880", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d886", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d88d", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d8a7", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8ce", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d8d5", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41ced8", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41c8d8", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#41c1d8", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41aed8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#4193d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#4186d8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#416cd8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#415fd8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#4152d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#5d41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#6a41d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#8b41d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#a541d8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#b941d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#bf41d8", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#d84189", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84182", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d84161", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d88941", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d84e41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d8415b", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#9e41d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d8418f", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89641", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8b041", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d89641", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41d886", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d88d", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d84168", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8c441", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#50d841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d886", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d8a7", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41ced8", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#418dd8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#4166d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#d841ca", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#49d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d89a", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d8a1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d841ca", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#49d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#41d89a", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d8a1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d841ca", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#49d841", "style": "normal"}, {"source": "t_gripper", "target": "m_px4io", "color": "#41d879", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#41d89a", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#41d8a1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d8ce", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#4179d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d84168", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#d87541", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d84168", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d88d", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8d5", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#4173d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41d8bb", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#41d8bb", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#41d8bb", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#41d8bb", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#d84741", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d89641", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8b641", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#91d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d84189", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841a9", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d87541", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#ccd841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#abd841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#5d41d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#6341d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#6a41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d8419c", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d85b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d86141", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#5d41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d841ca", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#ab41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#d86e41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#49d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#41d873", "style": "normal"}, {"source": "t_gripper", "target": "m_uavcan", "color": "#41d879", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#41d886", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#41d89a", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d8a1", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#41d8bb", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8ce", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#41a7d8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#41a1d8", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#419ad8", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#ab41d8", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#b241d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841c4", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#d88241", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#5dd841", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d886", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#41d5d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#4186d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#8b41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84182", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d84168", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_frsky_telemetry", "name": "frsky_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_hott_telemetry", "name": "hott_telemetry", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_batt_smbus", "name": "batt_smbus", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16448", "name": "adis16448", "type": "Module", "color": "#666666"}, {"id": "m_adis16507", "name": "adis16507", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_thoneflow", "name": "thoneflow", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_paa3905", "name": "paa3905", "type": "Module", "color": "#666666"}, {"id": "m_paw3902", "name": "paw3902", "type": "Module", "color": "#666666"}, {"id": "m_pmw3901", "name": "pmw3901", "type": "Module", "color": "#666666"}, {"id": "m_px4flow", "name": "px4flow", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_crsf_rc", "name": "crsf_rc", "type": "Module", "color": "#666666"}, {"id": "m_ghst_rc", "name": "ghst_rc", "type": "Module", "color": "#666666"}, {"id": "m_sbus_rc", "name": "sbus_rc", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_irlock", "name": "irlock", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_dsm_rc", "name": "dsm_rc", "type": "Module", "color": "#666666"}, {"id": "m_batmon", "name": "batmon", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "m_bst", "name": "bst", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#b7d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d89d41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#d8b141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#96d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#9641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#4190d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#41d8d2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#4141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#d89041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#417cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#d86f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d8aa41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#d841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#d84190", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#62d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#41d2d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#d8b741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#419dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#aa41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#cbd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#89d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#41bed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#41a3d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#d841c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#68d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#41d8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#4741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#5b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#d8cb41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#5bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8a3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#41aad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#4196d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#4e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#6241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d8419d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d84189", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#82d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#b741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#41d86f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#41d8aa", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#41d8be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#9d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#cb41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#d841b1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#7541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#a341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841d2", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d8c441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#41d8b7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#4182d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#4154d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#6f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d84196", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#d84182", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#47d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#41d875", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d882", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#41d8c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#41cbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#d88941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#41d868", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#41d89d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#41d8b1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#d841cb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#d89641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d8a341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#d8d241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#41d896", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#7c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#b141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d841aa", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#41d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#41d85b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#41d87c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#41d889", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#41d890", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#41b1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#5441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#6841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#be41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#d8415b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#aad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#4ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#41d847", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#41d862", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#41c4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#415bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#4147d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#8241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#9041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#d841be", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d8416f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d8be41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#c4d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#9dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#4189d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#414ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#d8417c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#d85b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#7cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#6fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#c441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#d241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#d841b7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#d86241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#bed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#b1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#a3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#54d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#41d84e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#416fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#4168d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#d87c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#75d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#41b7d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#4175d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#4162d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#d84162", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#90d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d8cb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d88241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#8941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#41d854", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d841a3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_ads1115", "target": "t_adc_report", "color": "#4162d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#4162d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#d85b41", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#d8414e", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#d8414e", "style": "dashed"}, {"source": "m_batt_smbus", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#415bd8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#415bd8", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#9d41d8", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#9d41d8", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#9d41d8", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#4ed841", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#d8be41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#d87c41", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d841aa", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#41d889", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#6841d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#41b7d8", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#9041d8", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_adis16448", "target": "t_sensor_baro", "color": "#d8414e", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_adis16507", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_irlock", "target": "t_irlock_report", "color": "#9dd841", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_paa3905", "target": "t_sensor_optical_flow", "color": "#4154d8", "style": "dashed"}, {"source": "m_paw3902", "target": "t_sensor_optical_flow", "color": "#4154d8", "style": "dashed"}, {"source": "m_pmw3901", "target": "t_sensor_optical_flow", "color": "#4154d8", "style": "dashed"}, {"source": "m_px4flow", "target": "t_sensor_optical_flow", "color": "#4154d8", "style": "dashed"}, {"source": "m_thoneflow", "target": "t_sensor_optical_flow", "color": "#4154d8", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#4ed841", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d8be41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d841aa", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#41d889", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#4ed841", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d8be41", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#c441d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#c4d841", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d841aa", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d8cb", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#416fd8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#41d889", "style": "dashed"}, {"source": "m_crsf_rc", "target": "t_input_rc", "color": "#41d8cb", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_input_rc", "color": "#41d8cb", "style": "dashed"}, {"source": "m_dsm_rc", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_ghst_rc", "target": "t_input_rc", "color": "#41d8cb", "style": "dashed"}, {"source": "m_sbus_rc", "target": "t_input_rc", "color": "#41d8cb", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d8cb", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#416fd8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#c4d841", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "m_batmon", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_hott_telemetry", "target": "t_esc_status", "color": "#d87c41", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#4ed841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#5b41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#d8be41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#d87c41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#c4d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#82d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d841aa", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#416fd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#41d889", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#47d841", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#41d847", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841d2", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#4ed841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d8be41", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#d8417c", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#414ed8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#4147d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#416fd8", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#41d854", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#8241d8", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#41cbd8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#d841d8", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#41aad8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#7541d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#41d889", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#4741d8", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d2d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#b741d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#d85441", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d86841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#d89641", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d841a3", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d8a341", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d8419d", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#41d86f", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#41d896", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#d84147", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#416fd8", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#d241d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#6f41d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d8c441", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d882", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#41d8d2", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#4168d8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#d8cb41", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#d84182", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#d841b7", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#d84175", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#41d2d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#4141d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#41c4d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#41d868", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#41bed8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#d241d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#417cd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84154", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#4e41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#9641d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#41c4d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#41d868", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#d841cb", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#d8b741", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#aa41d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#d88941", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#41d8aa", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#be41d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#d89041", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#cb41d8", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#4182d8", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d88241", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#d84168", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#d86241", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#4196d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8a3", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#41d862", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#8241d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#d241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#d84141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#9dd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#b141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#90d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#89d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#b741d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#d84741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d86841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#41b7d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#41b1d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#68d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#41a3d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#62d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#5bd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#d86f41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#4190d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#4189d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#4182d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#d89041", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#d841b1", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d8419d", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#4175d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#d84190", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#4154d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#41d854", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d8416f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#41d890", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#cbd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#6841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#6f41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#bed841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#41d8be", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#b1d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#7c41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d8cb", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#8941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#d8414e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#9d41d8", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#41d8d2", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d8c441", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#89d841", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#6f41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#aad841", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84154", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#419dd8", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#d84741", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#75d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#cb41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#54d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#d841c4", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#d841be", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d8419d", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#d8b141", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#d8417c", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#41d87c", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#5441d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#41d89d", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#d8d241", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#8241d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#8941d8", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#d87541", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#4196d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#d8415b", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#41d896", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#90d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#41d8c4", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#41d875", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#a3d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#9d41d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#a341d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#4ed841", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#d8be41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d841aa", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#41d889", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#d8414e", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#41b7d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#d84162", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#41d84e", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#41d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#90d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#96d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#7cd841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#b7d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d89d41", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d8aa41", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#416fd8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#41d8b1", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#41d85b", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d84196", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d84189", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#6241d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#89d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#41d8b7", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#41d8d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#41c4d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#41d868", "style": "dashed"}, {"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d8be41", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#416fd8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#6fd841", "style": "dashed"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#4162d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#b741d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#4ed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#8241d8", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#d8b141", "style": "normal"}, {"source": "t_gripper", "target": "m_dshot", "color": "#d87541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#4ed841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#d8be41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8a3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#41d85b", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#7541d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#d241d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d882", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#41d889", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#6841d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#7cd841", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#416fd8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#416fd8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#416fd8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#416fd8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#47d841", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#d8417c", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#b741d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#8241d8", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d8cb", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d8419d", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#8241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#d8cb41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#8241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#d8cb41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#8241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#d8cb41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#4ed841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out", "color": "#d87541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#4ed841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d8be41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8a3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#41d85b", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#7541d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#d241d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d882", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#41d889", "style": "normal"}, {"source": "t_gripper", "target": "m_px4io", "color": "#d87541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#4ed841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d8be41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d8a3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#be41d8", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#c441d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#41d85b", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#7541d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#8241d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#d241d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#41d882", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#41d889", "style": "normal"}, {"source": "t_battery_status", "target": "m_crsf_rc", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_crsf_rc", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_crsf_rc", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dsm_rc", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_dsm_rc", "color": "#8241d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_ghst_rc", "color": "#d8416f", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#4162d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#41d85b", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#4ed841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_bst", "color": "#d86841", "style": "normal"}, {"source": "t_battery_status", "target": "m_bst", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_frsky_telemetry", "color": "#b741d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_frsky_telemetry", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_frsky_telemetry", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_frsky_telemetry", "color": "#d8419d", "style": "normal"}, {"source": "t_home_position", "target": "m_hott_telemetry", "color": "#d8417c", "style": "normal"}, {"source": "t_esc_status", "target": "m_hott_telemetry", "color": "#d87c41", "style": "normal"}, {"source": "t_airspeed", "target": "m_hott_telemetry", "color": "#90d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_hott_telemetry", "color": "#d8416f", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#6fd841", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#b741d8", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#cb41d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#d241d8", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#68d841", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#6fd841", "style": "normal"}, {"source": "t_gripper", "target": "m_uavcan", "color": "#d87541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#4ed841", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#416fd8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#d8be41", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#d8417c", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#41d85b", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d882", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#41d889", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8a3", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#cbd841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#6841d8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#41d8be", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#7541d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#8241d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#4168d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#b741d8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#d85441", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#6241d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#90d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#cb41d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#d86841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#4e41d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#d8cb41", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#4162d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#8241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#d8cb41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#d86841", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#415bd8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d8419d", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#d89041", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#b741d8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#d85441", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#7cd841", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#d85b41", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#cb41d8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#41cbd8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d86841", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#41b7d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#4196d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#4ed841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#47d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#d87c41", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d88241", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#d841be", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#41d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#d841b1", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#d89641", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d8419d", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d84196", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#41d84e", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#d8417c", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#41d85b", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#41d862", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#41d854", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#d84162", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#d84168", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#41d86f", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#41d875", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#41d87c", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#41d889", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#41d896", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#41d89d", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8a3", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#d8d241", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#c4d841", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#41d8b7", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#41d8b1", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#7c41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#8241d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#41d8c4", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#d8414e", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#9d41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841d2", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d84189", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#4196d8", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#6241d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#41d8d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#8241d8", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#41c4d8", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#41d868", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#41aad8", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8d841", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#5bd841", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#d8415b", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#41d896", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#47d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#41d841", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#90d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#4182d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#cb41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#41d8c4", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#4e41d8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#a3d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#d87c41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#8241d8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#d8cb41", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d88241", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#4147d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#41d85b", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841d2", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#89d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#8241d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#aad841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841d2", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#41d8d2", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#47d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8a3", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#89d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#8241d8", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#41bed8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#d86841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8a3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841d2", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#47d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#d86841", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#d84175", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#41d2d8", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#4141d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#cb41d8", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#41c4d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#8241d8", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#417cd8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841d2", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#d841c4", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#47d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8a3", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#d86841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#6f41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#8241d8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d8419d", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841d2", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d84e41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8a3", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#47d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#8241d8", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#4741d8", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#62d841", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#d841c4", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#4190d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8a3", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#d89041", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#41d85b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d8419d", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#41a3d8", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#54d841", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#41d8b1", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#7cd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#8241d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#41d84e", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841d2", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#41d896", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#4ed841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#47d841", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#6241d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#6f41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#41d875", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d8419d", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#aad841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#4e41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#b741d8", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#9dd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8a3", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#41d85b", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#8241d8", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#41b1d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#8241d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#d84162", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8a3", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#41d862", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#4196d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d84e41", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#d85441", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#d86241", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d86841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#d87c41", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d88241", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#d88941", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#d89041", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d89d41", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d8a341", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d8aa41", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#d8b741", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d2d841", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#bed841", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#b7d841", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#b1d841", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#a3d841", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#96d841", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#89d841", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#90d841", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#82d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#4ed841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#47d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#41d841", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#41d847", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#41d854", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#41d85b", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#41d86f", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#41d875", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#41d87c", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#41d890", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#41d896", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#41d89d", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8a3", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#41d8aa", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#41d8b1", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#41d8b7", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d8cb", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#41d8d2", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#41b7d8", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#41a3d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#4196d8", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#4189d8", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#4182d8", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#4175d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#4168d8", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#415bd8", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#414ed8", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#4147d8", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#5b41d8", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#6241d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#6841d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#8241d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#9041d8", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#8941d8", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#9d41d8", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#a341d8", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#aa41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#cb41d8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#d841d8", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#d841cb", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841d2", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#d841c4", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#d841be", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#d841b7", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d841aa", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d8419d", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#d84182", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#d8417c", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d8416f", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#d84162", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84154", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#d8414e", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841d2", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#41d8d2", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8a3", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#89d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d86841", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#419dd8", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d84189", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8a3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841d2", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d8c441", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#b741d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#6f41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841d2", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d84e41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8a3", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d8416f", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#8241d8", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#4741d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#d84741", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#d8417c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#b741d8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d2d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#41d85b", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#4182d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#cb41d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#75d841", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d8419d", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#5441d8", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#8941d8", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#9641d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#41d85b", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#b141d8", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d8cb", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#4196d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841d2", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#41d896", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#41d84e", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#4162d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#4154d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#41d8b1", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#7cd841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#d84162", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#41d86f", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#41d875", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#a3d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#9d41d8", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#d87541", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#4ed841", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#d8be41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8a3", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#be41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#41d85b", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#7541d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#d241d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d882", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#41d889", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d89d41", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#96d841", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d89d41", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d8aa41", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d89d41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#a341d8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d841aa", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#41d84e", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#7cd841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#41d85b", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#d84162", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#d8414e", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#41d8b7", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#cb41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#d86841", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d86f41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841d2", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#d841c4", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#47d841", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d84190", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#4168d8", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#d8417c", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#41d85b", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#41d862", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#8241d8", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84154", "style": "normal"}]} \ No newline at end of file diff --git a/docs/public/middleware/graph_px4_fmu-v6x.json b/docs/public/middleware/graph_px4_fmu-v6x.json index c102aaa60af3..7beaf21d0ac2 100644 --- a/docs/public/middleware/graph_px4_fmu-v6x.json +++ b/docs/public/middleware/graph_px4_fmu-v6x.json @@ -1 +1 @@ -{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_hardfault_stream", "name": "hardfault_stream", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_i2c_launcher", "name": "i2c_launcher", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16470", "name": "adis16470", "type": "Module", "color": "#666666"}, {"id": "m_icm42670p", "name": "icm42670p", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_icm45686", "name": "icm45686", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#bed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8ce", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#4183d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41d867", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d88541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#73d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84185", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#41d8b3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#57d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#41ced8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#4160d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#7ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#41d860", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#41d853", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#41d85a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#b0d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#6cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#41d84c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#419ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#417cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d841c9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8ae41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41a5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#a941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#c541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#87d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#5ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d8b9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84163", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d8415c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84155", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#9cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#cc41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d8418c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d84177", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#ccd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#a9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#41d86e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41acd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#4197d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d84193", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d86341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#4190d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#80d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d8ac", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#7341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#b041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841bc", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841b5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#d87e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d8a5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#4175d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#8041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#b741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d8419a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#41d875", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#41b9d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#4153d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#5741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#8741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d85c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8c341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#a3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41b3d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#4167d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#7a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#a341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d841d0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d8417e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8bc41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8d041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#c5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#50d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#4ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d87c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#5041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#d841d7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d841c3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d89a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8a741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#8ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#65d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41c0d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#9541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d8416a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d86a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d8a041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d883", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d88a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d897", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8c7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#414cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_battery_info", "name": "battery_info", "type": "topic", "color": "#d88c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d89e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#418ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#416ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#8e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#be41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8c941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8d741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#41d8c0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#4a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#6541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#9c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#d341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841a0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d84170", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#d87041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#b7d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#415ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#5e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#6c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d87741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d890", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8b541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41c7d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#95d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d86a41", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_ads1115", "target": "t_adc_report", "color": "#d87041", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#d87e41", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#4a41d8", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#d87041", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#8e41d8", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d8a741", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d89a41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8a741", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d86a41", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#95d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#8ed841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#87d841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d883", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d88a", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#41d8c0", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#4175d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#4160d8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841ae", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d8416a", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d86341", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8ae41", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8c341", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#d85c41", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#d86a41", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#b7d841", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#b0d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#a9d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#a3d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#9cd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#7a41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d841d0", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841a7", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d8418c", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d8417e", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84147", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d89e", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#b041d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841b5", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d8a5", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84177", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88541", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#5ed841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#9c41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#80d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#7ad841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#73d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#6cd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#65d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d89e", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#41d8b3", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d8b9", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8ce", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#418ad8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#4183d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#8741d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84185", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#65d841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#8741d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84177", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#43d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#41d845", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#41d853", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#41d85a", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#41d86e", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#41d875", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#41b9d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d87c", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#4145d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#5e41d8", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#4a41d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d84193", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d8ac", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#41d8c0", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8b541", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8c7", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#d341d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d89e", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8d5", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d5d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d8416a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d87741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d8a041", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8bc41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8c941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8d041", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8d741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d3d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#95d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#57d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#41d845", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#41d84c", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#41d860", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41d867", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#41d87c", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d890", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#41d897", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d8ac", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#41ced8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41c7d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41acd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#419ed8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#4197d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#4190d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#4167d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#4341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#4a41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#5e41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#6541d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#7341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#a341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#b041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#b741d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#c541d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#d841d7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d841d0", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d841c9", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d841a7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d8418c", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d84177", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84155", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84177", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88541", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#9541d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#b041d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841c9", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841b5", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84185", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d84e41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84177", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#4a41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8bc41", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#bed841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#50d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#4ad841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d88a", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41c7d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41c0d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41b3d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#417cd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#415ad8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#4153d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#b741d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841a7", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d84193", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d84170", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d8416a", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#d85c41", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#d86a41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#d85c41", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#d86a41", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#41d890", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#41d8c0", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#416ed8", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#414cd8", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#41d890", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d5d8", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#6c41d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#41d8c0", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#414cd8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#41d8c0", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d87741", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#5041d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#7a41d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#8041d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841a0", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d8419a", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#41d87c", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#4145d8", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#5e41d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#41d8c0", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#5741d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#d85541", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#d85c41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#d86a41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_battery_info", "color": "#d88c41", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#b7d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#41d8c0", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41a5d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#414cd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#be41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#cc41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d841c3", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#c5d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#65d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#8741d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#a941d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841c9", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841bc", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84163", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415c", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8414e", "style": "dashed"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d87741", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#b0d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#a3d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#5ed841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d8b9", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#9c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84163", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#d87041", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#5ed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#d8416a", "style": "normal"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#d87041", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d841c3", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8a741", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#41d845", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d8418c", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#d84741", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85541", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#d87e41", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89341", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8b541", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#ccd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#c5d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#b7d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#b0d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#a9d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#a3d841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#9cd841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#95d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#50d841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d88a", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8c7", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8d5", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d5d8", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41c0d8", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41b3d8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41acd8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#4175d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#4153d8", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#414cd8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#5741d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#5e41d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#6541d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#6c41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#7a41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#8041d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#8e41d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#a341d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d8416a", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8414e", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#87d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#65d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d5d8", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#8741d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#a941d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84163", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d8415c", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8bc41", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#d85541", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d86341", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#d86a41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#43d841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#41d89e", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#41d8a5", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d841c3", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d87741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#d87e41", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#c5d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d8ac", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d8b9", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#7a41d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#8041d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84155", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#b7d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#5ed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#d8416a", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#9541d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d8416a", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#d87e41", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d88541", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#6cd841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d8416a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d8416a", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#d87e41", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#7ad841", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#73d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#65d841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8b3", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d8416a", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#d87e41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8d5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#417cd8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#b041d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d8416a", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#d87e41", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d89341", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d8ae41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d84177", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d8416a", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#41d845", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#41d84c", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#41d860", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41d867", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8d5", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#417cd8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d84170", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d87c", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#5741d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#6541d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d8416a", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_hardfault_stream", "color": "#a341d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#4341d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_i2c_launcher", "color": "#d8416a", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#5ed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#d8416a", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#5ed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#d8416a", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#5ed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#d8416a", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#d87e41", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d8b9", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#417cd8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#7a41d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#9541d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#b041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84163", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d897", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d8418c", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#bed841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#d8416a", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89341", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8d5", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d8416a", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#6c41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d8416a", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d5d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d8416a", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d85c41", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d87741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#d87e41", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d88541", "style": "normal"}, {"source": "t_battery_info", "target": "m_mavlink", "color": "#d88c41", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89341", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d89a41", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d8a041", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8a741", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d8b541", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d8c341", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8c941", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8d041", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8d741", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d3d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#ccd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#c5d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#b7d841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#b0d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#a9d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#a3d841", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#95d841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#8ed841", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#80d841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#50d841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#41d845", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#41d84c", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#41d853", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#41d85a", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#41d86e", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#41d875", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#41d87c", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d883", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d88a", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d890", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d8ac", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8d5", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d5d8", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41c7d8", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41c0d8", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#41b9d8", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41a5d8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#418ad8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#417cd8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#4160d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#4153d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#5741d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#5e41d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#6c41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#7a41d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#9c41d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#b741d8", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#cc41d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841bc", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d8419a", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84185", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d8417e", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d84177", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d84163", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d88541", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d841c9", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d8416a", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d84e41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d8415c", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#b041d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841b5", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d8418c", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89341", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8ae41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d84177", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d8416a", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#d87e41", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d89341", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41d88a", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d890", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d8416a", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8c341", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#4ad841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d88a", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d8ac", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41c7d8", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#4183d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#415ad8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#b741d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841a7", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d8416a", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84147", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#d85541", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d86341", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#d86a41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#43d841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#41d89e", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#41d8a5", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d841c3", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#d85541", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d86341", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#d86a41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#43d841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#41d89e", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#41d8a5", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d8d5", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#416ed8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#d8416a", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#d87041", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d89341", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#d8416a", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d890", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d5d8", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#4167d8", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#41d8c0", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#41d8c0", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#41d8c0", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#41d8c0", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#d84741", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d89341", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8b541", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#8ed841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d8416a", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#d87041", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#ccd841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#a9d841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#5741d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#6541d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#6c41d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#7341d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#7a41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841a0", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d8419a", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#41d87c", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#4a41d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#6541d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#6c41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d841c3", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#be41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#d85541", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d86341", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#d86a41", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#43d841", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#41d87c", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#41d88a", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#41d89e", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#41d8a5", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#41d8c0", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8d5", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#419ed8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#4197d8", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#4190d8", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#be41d8", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#c541d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841bc", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#d87e41", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#57d841", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d88a", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#41ced8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#417cd8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#9c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#d841d0", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d841c3", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841ae", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84185", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d8416a", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_serial", "name": "lightware_laser_serial", "type": "Module", "color": "#666666"}, {"id": "m_pm_selector_auterion", "name": "pm_selector_auterion", "type": "Module", "color": "#666666"}, {"id": "m_lightware_laser_i2c", "name": "lightware_laser_i2c", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_is31fl3195", "name": "rgbled_is31fl3195", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_cdcacm_autostart", "name": "cdcacm_autostart", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_ncp5623c", "name": "rgbled_ncp5623c", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_capture", "name": "camera_capture", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_ulanding_radar", "name": "ulanding_radar", "type": "Module", "color": "#666666"}, {"id": "m_battery_status", "name": "battery_status", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_rgbled_lp5562", "name": "rgbled_lp5562", "type": "Module", "color": "#666666"}, {"id": "m_safety_button", "name": "safety_button", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_i2c_launcher", "name": "i2c_launcher", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_esc_battery", "name": "esc_battery", "type": "Module", "color": "#666666"}, {"id": "m_led_control", "name": "led_control", "type": "Module", "color": "#666666"}, {"id": "m_teraranger", "name": "teraranger", "type": "Module", "color": "#666666"}, {"id": "m_septentrio", "name": "septentrio", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_board_adc", "name": "board_adc", "type": "Module", "color": "#666666"}, {"id": "m_ms5525dso", "name": "ms5525dso", "type": "Module", "color": "#666666"}, {"id": "m_adis16470", "name": "adis16470", "type": "Module", "color": "#666666"}, {"id": "m_icm42670p", "name": "icm42670p", "type": "Module", "color": "#666666"}, {"id": "m_icm42688p", "name": "icm42688p", "type": "Module", "color": "#666666"}, {"id": "m_lsm303agr", "name": "lsm303agr", "type": "Module", "color": "#666666"}, {"id": "m_mmc5983ma", "name": "mmc5983ma", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_icp201xx", "name": "icp201xx", "type": "Module", "color": "#666666"}, {"id": "m_ms4525do", "name": "ms4525do", "type": "Module", "color": "#666666"}, {"id": "m_icm20602", "name": "icm20602", "type": "Module", "color": "#666666"}, {"id": "m_icm20649", "name": "icm20649", "type": "Module", "color": "#666666"}, {"id": "m_icm20948", "name": "icm20948", "type": "Module", "color": "#666666"}, {"id": "m_icm45686", "name": "icm45686", "type": "Module", "color": "#666666"}, {"id": "m_iim42652", "name": "iim42652", "type": "Module", "color": "#666666"}, {"id": "m_qmc5883l", "name": "qmc5883l", "type": "Module", "color": "#666666"}, {"id": "m_vcm1193l", "name": "vcm1193l", "type": "Module", "color": "#666666"}, {"id": "m_rc_input", "name": "rc_input", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_ads1115", "name": "ads1115", "type": "Module", "color": "#666666"}, {"id": "m_cm8jl65", "name": "cm8jl65", "type": "Module", "color": "#666666"}, {"id": "m_tf02pro", "name": "tf02pro", "type": "Module", "color": "#666666"}, {"id": "m_vl53l0x", "name": "vl53l0x", "type": "Module", "color": "#666666"}, {"id": "m_vl53l1x", "name": "vl53l1x", "type": "Module", "color": "#666666"}, {"id": "m_ak09916", "name": "ak09916", "type": "Module", "color": "#666666"}, {"id": "m_hmc5883", "name": "hmc5883", "type": "Module", "color": "#666666"}, {"id": "m_ist8308", "name": "ist8308", "type": "Module", "color": "#666666"}, {"id": "m_ist8310", "name": "ist8310", "type": "Module", "color": "#666666"}, {"id": "m_lis3mdl", "name": "lis3mdl", "type": "Module", "color": "#666666"}, {"id": "m_iis2mdc", "name": "iis2mdc", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out", "name": "pwm_out", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_bmp388", "name": "bmp388", "type": "Module", "color": "#666666"}, {"id": "m_ms5611", "name": "ms5611", "type": "Module", "color": "#666666"}, {"id": "m_ll40ls", "name": "ll40ls", "type": "Module", "color": "#666666"}, {"id": "m_tfmini", "name": "tfmini", "type": "Module", "color": "#666666"}, {"id": "m_heater", "name": "heater", "type": "Module", "color": "#666666"}, {"id": "m_bmi088", "name": "bmi088", "type": "Module", "color": "#666666"}, {"id": "m_rgbled", "name": "rgbled", "type": "Module", "color": "#666666"}, {"id": "m_ak8963", "name": "ak8963", "type": "Module", "color": "#666666"}, {"id": "m_bmm150", "name": "bmm150", "type": "Module", "color": "#666666"}, {"id": "m_rm3100", "name": "rm3100", "type": "Module", "color": "#666666"}, {"id": "m_ina226", "name": "ina226", "type": "Module", "color": "#666666"}, {"id": "m_ina228", "name": "ina228", "type": "Module", "color": "#666666"}, {"id": "m_ina238", "name": "ina238", "type": "Module", "color": "#666666"}, {"id": "m_uavcan", "name": "uavcan", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_sdp3x", "name": "sdp3x", "type": "Module", "color": "#666666"}, {"id": "m_dshot", "name": "dshot", "type": "Module", "color": "#666666"}, {"id": "m_px4io", "name": "px4io", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "t_distance_sensor_mode_change_request", "name": "distance_sensor_mode_change_request", "type": "topic", "color": "#d8d141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#41d84e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#4185d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41bdd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#41a8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#4147d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#4171d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#4141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#d8ca41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#71d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#415cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#41d8a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#8c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#93d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#55d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#41d89a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#41d855", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#41d878", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#41d8bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_operator_id", "name": "open_drone_id_operator_id", "type": "topic", "color": "#417fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#7141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#bd41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d89a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_arm_status", "name": "open_drone_id_arm_status", "type": "topic", "color": "#41d87f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#6341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_uavcan_parameter_request", "name": "uavcan_parameter_request", "type": "topic", "color": "#9341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d8af41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#41d85c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#41d86a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d885", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#41cad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#4741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#5c41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_uavcan_parameter_value", "name": "uavcan_parameter_value", "type": "topic", "color": "#c4d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#41d863", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#4178d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#d841d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_self_id", "name": "open_drone_id_self_id", "type": "topic", "color": "#d88541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#b6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#78d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#4163d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#8541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#d841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d87141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_open_drone_id_system", "name": "open_drone_id_system", "type": "topic", "color": "#bdd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#a841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#d1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#41d847", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#41d88c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#7841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#a141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#af41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#9ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#4ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#41d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#d141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#d84171", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#d84163", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#d85c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#8cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#5cd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#41b6d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#d841a8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#85d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#47d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#41d893", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#5541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d841c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d84193", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d8418c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#d85541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#afd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#41d8ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#41d1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#4193d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#4e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#9a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#ca41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d84155", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d8a141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8c441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#41d8af", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#41afd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#416ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#7f41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#d84185", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84178", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#d8416a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#d8415c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#d88c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#7fd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d8a8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#41d8b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#b641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_safety_button", "name": "safety_button", "type": "topic", "color": "#d841af", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#d841a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#d8d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#cad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#41d871", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#418cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_px4io_status", "name": "px4io_status", "type": "topic", "color": "#414ed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#c441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#d86a41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#d87841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d87f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#41d8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#419ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_led_control", "name": "led_control", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#d8419a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#d86341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#d8a841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_adc_report", "name": "adc_report", "type": "topic", "color": "#a8d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#a1d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d841ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#41a1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#d8417f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#63d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d8c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#4155d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#41c4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}], "links": [{"source": "m_ads1115", "target": "t_adc_report", "color": "#a8d841", "style": "dashed"}, {"source": "m_board_adc", "target": "t_system_power", "color": "#cad841", "style": "dashed"}, {"source": "m_board_adc", "target": "t_adc_report", "color": "#a8d841", "style": "dashed"}, {"source": "m_bmp388", "target": "t_sensor_baro", "color": "#d87841", "style": "dashed"}, {"source": "m_icp201xx", "target": "t_sensor_baro", "color": "#d87841", "style": "dashed"}, {"source": "m_ms5611", "target": "t_sensor_baro", "color": "#d87841", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_camera_trigger", "color": "#d8c441", "style": "dashed"}, {"source": "m_camera_capture", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8c441", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_ms4525do", "target": "t_differential_pressure", "color": "#8541d8", "style": "dashed"}, {"source": "m_ms5525dso", "target": "t_differential_pressure", "color": "#8541d8", "style": "dashed"}, {"source": "m_sdp3x", "target": "t_differential_pressure", "color": "#8541d8", "style": "dashed"}, {"source": "m_cm8jl65", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_lightware_laser_i2c", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_lightware_laser_serial", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_ll40ls", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_teraranger", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_tf02pro", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_tfmini", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_ulanding_radar", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_vl53l0x", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_vl53l1x", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_outputs", "color": "#41d893", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_armed", "color": "#7f41d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_test", "color": "#41d8b6", "style": "dashed"}, {"source": "m_dshot", "target": "t_actuator_motors", "color": "#ca41d8", "style": "dashed"}, {"source": "m_dshot", "target": "t_esc_status", "color": "#d84147", "style": "dashed"}, {"source": "m_septentrio", "target": "t_gps_inject_data", "color": "#d84141", "style": "dashed"}, {"source": "m_septentrio", "target": "t_satellite_info", "color": "#d8415c", "style": "dashed"}, {"source": "m_septentrio", "target": "t_sensor_gps", "color": "#d86341", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#d84141", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#d86341", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#d8415c", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_adis16470", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_bmi088", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_icm20602", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_icm20649", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_icm20948", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_icm42670p", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_icm42688p", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_icm45686", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_iim42652", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_ak09916", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_ak8963", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_bmm150", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_hmc5883", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_ist8308", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_ist8310", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_lis3mdl", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_lsm303agr", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_mmc5983ma", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_qmc5883l", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_rm3100", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_iis2mdc", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_vcm1193l", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_ina226", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_ina228", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_ina238", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_outputs", "color": "#41d893", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_armed", "color": "#7f41d8", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_test", "color": "#41d8b6", "style": "dashed"}, {"source": "m_pwm_out", "target": "t_actuator_motors", "color": "#ca41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_outputs", "color": "#41d893", "style": "dashed"}, {"source": "m_px4io", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_px4io", "target": "t_safety_button", "color": "#d841af", "style": "dashed"}, {"source": "m_px4io", "target": "t_px4io_status", "color": "#414ed8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_armed", "color": "#7f41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_test", "color": "#41d8b6", "style": "dashed"}, {"source": "m_px4io", "target": "t_actuator_motors", "color": "#ca41d8", "style": "dashed"}, {"source": "m_px4io", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_px4io", "target": "t_input_rc", "color": "#d8417f", "style": "dashed"}, {"source": "m_px4io", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_rc_input", "target": "t_input_rc", "color": "#d8417f", "style": "dashed"}, {"source": "m_rc_input", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_safety_button", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_safety_button", "target": "t_safety_button", "color": "#d841af", "style": "dashed"}, {"source": "m_safety_button", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_safety_button", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_outputs", "color": "#41d893", "style": "dashed"}, {"source": "m_uavcan", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_uavcan", "target": "t_safety_button", "color": "#d841af", "style": "dashed"}, {"source": "m_uavcan", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_esc_status", "color": "#d84147", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_armed", "color": "#7f41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_test", "color": "#41d8b6", "style": "dashed"}, {"source": "m_uavcan", "target": "t_actuator_motors", "color": "#ca41d8", "style": "dashed"}, {"source": "m_uavcan", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_uavcan", "target": "t_uavcan_parameter_value", "color": "#c4d841", "style": "dashed"}, {"source": "m_uavcan", "target": "t_open_drone_id_arm_status", "color": "#41d87f", "style": "dashed"}, {"source": "m_uavcan", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#41d841", "style": "dashed"}, {"source": "m_battery_status", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d8a141", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#d84171", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#71d841", "style": "dashed"}, {"source": "m_commander", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#41cad8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#a841d8", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#4155d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d8a8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#7f41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#41d8b6", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#41d8af", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#416ad8", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#d88c41", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d89a41", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#ca41d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d87141", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d841c4", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#d84e41", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#41c4d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#4178d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#4163d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#d841d1", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#47d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d84193", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d8418c", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d8af41", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#41d8bd", "style": "dashed"}, {"source": "m_esc_battery", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_send_event", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#7841d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#d8d841", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#af41d8", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#d141d8", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#41d863", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#4147d8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#419ad8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#41d85c", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#d841b6", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#4185d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#41d8a1", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#bd41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#c441d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#d8d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#41d84e", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#4171d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#41afd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#d85c41", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#41a8d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#d8414e", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d885", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#41afd8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#d85c41", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#41d863", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#b6d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#afd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#5cd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#55d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#4141d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#93d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#8cd841", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#78d841", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#a141d8", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#63d841", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#d86a41", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#d841a1", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#d8bd41", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#d8d841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#41d8af", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84178", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8d1", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#a141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d84741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#d84141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#41d8d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41bdd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#d86341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#d8419a", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#a1d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#41a1d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#b641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#4193d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#7fd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#6ad841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#d87841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_operator_id", "color": "#417fd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_self_id", "color": "#d88541", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#4178d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#d841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#415cd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d841ca", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#4ed841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#4155d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#4141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#4741d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#4e41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#41d863", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d8418c", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#41d878", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d8af41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#5541d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#d8417f", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#41d8ca", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#41d871", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#6a41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#7141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#7841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#d8ca41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#8541d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#d1d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#8c41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41d8c4", "style": "dashed"}, {"source": "m_mavlink", "target": "t_uavcan_parameter_request", "color": "#9341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_open_drone_id_system", "color": "#bdd841", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#41d863", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#4147d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#d8416a", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#7141d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#7841d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#af41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#4171d8", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#41d89a", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#41d863", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#41d1d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d8c4", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#85d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#78d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#d841a8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#4ed841", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#d8a841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#41d855", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#d84185", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d8af41", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d8b641", "style": "dashed"}, {"source": "m_navigator", "target": "t_distance_sensor_mode_change_request", "color": "#d8d141", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d8a8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#41d8af", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#41d8ca", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#9a41d8", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#d8bd41", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#d85541", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#47d841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#d84163", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d87f41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#8541d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#9ad841", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#41a1d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#41b6d8", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d84155", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#41d88c", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#41d86a", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#7141d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#6341d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#d85c41", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#41d847", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#41afd8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#5c41d8", "style": "dashed"}, {"source": "m_actuator_test", "target": "t_actuator_test", "color": "#41d8b6", "style": "dashed"}, {"source": "m_led_control", "target": "t_led_control", "color": "#d841bd", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#418cd8", "style": "dashed"}, {"source": "t_adc_report", "target": "m_board_adc", "color": "#a8d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_capture", "color": "#d84155", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d84155", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_cdcacm_autostart", "color": "#7f41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_lightware_laser_i2c", "color": "#41d8af", "style": "normal"}, {"source": "t_distance_sensor_mode_change_request", "target": "m_lightware_laser_i2c", "color": "#d8d141", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_dshot", "color": "#afd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_dshot", "color": "#d8d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_dshot", "color": "#7f41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_dshot", "color": "#41d8b6", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_dshot", "color": "#ca41d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_dshot", "color": "#d141d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_dshot", "color": "#d84155", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_dshot", "color": "#41d8d1", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_dshot", "color": "#d87141", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_septentrio", "color": "#d84141", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#d84141", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_heater", "color": "#41d871", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled", "color": "#d841bd", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_is31fl3195", "color": "#d841bd", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_lp5562", "color": "#d841bd", "style": "normal"}, {"source": "t_led_control", "target": "m_rgbled_ncp5623c", "color": "#d841bd", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#4178d8", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41d8a8", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d89341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d8af41", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#d8417f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina226", "color": "#41d8af", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina226", "color": "#41d85c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina228", "color": "#41d8af", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina228", "color": "#41d85c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ina238", "color": "#41d8af", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_ina238", "color": "#41d85c", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pm_selector_auterion", "color": "#7f41d8", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out", "color": "#afd841", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out", "color": "#d8d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out", "color": "#7f41d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out", "color": "#41d8b6", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out", "color": "#ca41d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out", "color": "#d141d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out", "color": "#d84155", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out", "color": "#41d8d1", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out", "color": "#d87141", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_px4io", "color": "#afd841", "style": "normal"}, {"source": "t_px4io_status", "target": "m_px4io", "color": "#414ed8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_px4io", "color": "#d8d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_px4io", "color": "#7f41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_px4io", "color": "#41d8af", "style": "normal"}, {"source": "t_actuator_test", "target": "m_px4io", "color": "#41d8b6", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_px4io", "color": "#ca41d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_px4io", "color": "#d141d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_px4io", "color": "#d84155", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_px4io", "color": "#41d8d1", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_px4io", "color": "#d87141", "style": "normal"}, {"source": "t_adc_report", "target": "m_rc_input", "color": "#a8d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_rc_input", "color": "#d89341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_rc_input", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_rc_input", "color": "#d84155", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rc_input", "color": "#d8418c", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_safety_button", "color": "#7f41d8", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#418cd8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_uavcan", "color": "#d84141", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_uavcan", "color": "#afd841", "style": "normal"}, {"source": "t_tune_control", "target": "m_uavcan", "color": "#418cd8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_uavcan", "color": "#78d841", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_uavcan", "color": "#d87141", "style": "normal"}, {"source": "t_open_drone_id_operator_id", "target": "m_uavcan", "color": "#417fd8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uavcan", "color": "#4178d8", "style": "normal"}, {"source": "t_open_drone_id_self_id", "target": "m_uavcan", "color": "#d88541", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_uavcan", "color": "#ca41d8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_uavcan", "color": "#d141d8", "style": "normal"}, {"source": "t_led_control", "target": "m_uavcan", "color": "#d841bd", "style": "normal"}, {"source": "t_landing_gear", "target": "m_uavcan", "color": "#d8d841", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_uavcan", "color": "#7f41d8", "style": "normal"}, {"source": "t_home_position", "target": "m_uavcan", "color": "#41d8a8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_uavcan", "color": "#41d8af", "style": "normal"}, {"source": "t_actuator_test", "target": "m_uavcan", "color": "#41d8b6", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_uavcan", "color": "#d84155", "style": "normal"}, {"source": "t_uavcan_parameter_request", "target": "m_uavcan", "color": "#9341d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uavcan", "color": "#41d8d1", "style": "normal"}, {"source": "t_open_drone_id_system", "target": "m_uavcan", "color": "#bdd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#78d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#d84e41", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d885", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#41d85c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#41d8af", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#41d8bd", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#419ad8", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#41a1d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#5c41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_status", "color": "#41d8af", "style": "normal"}, {"source": "t_adc_report", "target": "m_battery_status", "color": "#a8d841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_status", "color": "#41d85c", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#d8418c", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8c441", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d8af41", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#4141d8", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#41d1d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#d84e41", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#41c4d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#41b6d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#d86341", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#a1d841", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#9ad841", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#85d841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#78d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#6ad841", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#63d841", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#d87841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#4178d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89341", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#ca41d8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#d841d8", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#4163d8", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#d841d1", "style": "normal"}, {"source": "t_safety_button", "target": "m_commander", "color": "#d841af", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#d841a8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#47d841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#4155d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#41d847", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#d841a1", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d8418c", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#5541d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d8af41", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#d84185", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#41d871", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84178", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#41d88c", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#d84171", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#d8bd41", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#d84163", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#7f41d8", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#8541d8", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d8a8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#41d8af", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#cad841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#41d8bd", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d84155", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#d8419a", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8d1", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#41cad8", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#41d86a", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#a841d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#6341d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#d8bd41", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#d85c41", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#41afd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#5c41d8", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#41d8ca", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#a141d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#78d841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d885", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#d85541", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#6ad841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#47d841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#41d841", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#d84163", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d87f41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#4741d8", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#41a1d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d84155", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_esc_battery", "color": "#41d8af", "style": "normal"}, {"source": "t_esc_status", "target": "m_esc_battery", "color": "#d84147", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_esc_battery", "color": "#41d85c", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#63d841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#416ad8", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d89341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d84155", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#78d841", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#a841d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d84155", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#a841d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#7141d8", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#bd41d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#4147d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#d8418c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#41d8af", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#78d841", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#4185d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#a841d8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#41c4d8", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#41d8a1", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#4178d8", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#41afd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#41d8af", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#41a8d8", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#d8414e", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#a841d8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#41c4d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#7841d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#4178d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d84155", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#d8418c", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d8af41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#a841d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#41d841", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d89341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#41d8af", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d89a41", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#41d863", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d8b641", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41bdd8", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#4141d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d84155", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#8c41d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#d8418c", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#41d878", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d8af41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#41d8af", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#41d871", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#41b6d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#d8419a", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d885", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#d8416a", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#a841d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#47d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#7841d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#4178d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#7f41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#9ad841", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#5c41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d8af41", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#d8418c", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#b641d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#4178d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#41d8af", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#4e41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d84155", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#41d8af", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#a1d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#41d8af", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84178", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8d1", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#d84141", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#d84e41", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#d86341", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#d86a41", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#d87841", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d87f41", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#d88c41", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89341", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d8a141", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d8af41", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#d8bd41", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8c441", "style": "normal"}, {"source": "t_uavcan_parameter_value", "target": "m_mavlink", "color": "#c4d841", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#b6d841", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#9ad841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#a1d841", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#93d841", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#8cd841", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#7fd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#78d841", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#71d841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#6ad841", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#63d841", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#5cd841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#55d841", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#4ed841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#47d841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#41d841", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#41d847", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#41d863", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#41d878", "style": "normal"}, {"source": "t_open_drone_id_arm_status", "target": "m_mavlink", "color": "#41d87f", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#41d893", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d8a8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#41d8af", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#41d8bd", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41d8c4", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8d1", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#41d8d8", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#41d1d8", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#41c4d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#41b6d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#419ad8", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#41a1d8", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#4193d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#4171d8", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#416ad8", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#4163d8", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#4155d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#4147d8", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#4141d8", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#5c41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#7141d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#7f41d8", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#8541d8", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#a141d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#a841d8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#c441d8", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d841ca", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#d841b6", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d841c4", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#d841a8", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d84193", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d8418c", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#d84185", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#d8417f", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#d8415c", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d84155", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#a841d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#7141d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#4147d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d8418c", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8d1", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#41d89a", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d86a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#a841d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#7841d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#af41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#a841d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89341", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#41d8af", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d89a41", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#41d863", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8d1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#78d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#a141d8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d841c4", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#4ed841", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#41c4d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#d8a841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#4178d8", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#41d84e", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d8a8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d84155", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d8c4", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d8af41", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#9a41d8", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#d8bd41", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#d8417f", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#6a41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#a841d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#47d841", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d87f41", "style": "normal"}, {"source": "t_adc_report", "target": "m_sensors", "color": "#a8d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#8541d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#41b6d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#d1d841", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#9ad841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#a1d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#4163d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#d8419a", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#41d871", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#d87841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#a1d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d84155", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#d8419a", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#41d871", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#41d847", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#a841d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#419ad8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#78d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#4178d8", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#4171d8", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#415cd8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#41d841", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#41d855", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#d8418c", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84178", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d8ca41", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d8a8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#41d8af", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d84155", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_i2c_launcher", "color": "#41d8af", "style": "normal"}]} \ No newline at end of file diff --git a/docs/public/middleware/graph_px4_sitl.json b/docs/public/middleware/graph_px4_sitl.json index 04d7687057c5..eb6e1afc8c78 100644 --- a/docs/public/middleware/graph_px4_sitl.json +++ b/docs/public/middleware/graph_px4_sitl.json @@ -1 +1 @@ -{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_system_power_simulator", "name": "system_power_simulator", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_airship_att_control", "name": "airship_att_control", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_sensor_airspeed_sim", "name": "sensor_airspeed_sim", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rover_differential", "name": "rover_differential", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_simulator", "name": "battery_simulator", "type": "Module", "color": "#666666"}, {"id": "m_simulator_mavlink", "name": "simulator_mavlink", "type": "Module", "color": "#666666"}, {"id": "m_fake_magnetometer", "name": "fake_magnetometer", "type": "Module", "color": "#666666"}, {"id": "m_px4_mavlink_debug", "name": "px4_mavlink_debug", "type": "Module", "color": "#666666"}, {"id": "m_work_item_example", "name": "work_item_example", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_rover_ackermann", "name": "rover_ackermann", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_agp_sim", "name": "sensor_agp_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_px4_simple_app", "name": "px4_simple_app", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_rover_mecanum", "name": "rover_mecanum", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_gz_bridge", "name": "gz_bridge", "type": "Module", "color": "#666666"}, {"id": "m_gyro_fft", "name": "gyro_fft", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_fake_gps", "name": "fake_gps", "type": "Module", "color": "#666666"}, {"id": "m_fake_imu", "name": "fake_imu", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_failure", "name": "failure", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_tests", "name": "tests", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#c641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d841b0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#d8418f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#41d859", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d88941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#7ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#d84189", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#49d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#41d8a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#63d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#41d8ce", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#4193d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#d341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#84d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#41d852", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#41d84b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#41aed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#b9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#77d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#41a7d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#d841d7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#d8b041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#9e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#91d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41d8ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8c1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#41d8c8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_attitude_setpoint", "name": "rover_attitude_setpoint", "type": "topic", "color": "#418dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_position_setpoint", "name": "rover_position_setpoint", "type": "topic", "color": "#4186d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_steering_setpoint", "name": "rover_steering_setpoint", "type": "topic", "color": "#4179d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_throttle_setpoint", "name": "rover_throttle_setpoint", "type": "topic", "color": "#4173d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_velocity_setpoint", "name": "rover_velocity_setpoint", "type": "topic", "color": "#416cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#d84161", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#d8415b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#a5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#d84196", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#d84182", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#ccd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#b2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#41d85f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#41c1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#d8419c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d86141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_aux_global_position", "name": "aux_global_position", "type": "topic", "color": "#d88f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource2d.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#8bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#41d8a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_rate_setpoint", "name": "rover_rate_setpoint", "type": "topic", "color": "#4180d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#a541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#d841ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#d841c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#d88241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#41d89a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#41a1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#7741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#ab41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#d841a3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#41d866", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#41ced8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#4159d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#4941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#7e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#d85b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d8c441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#abd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#41c8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#419ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro_fifo", "name": "sensor_gyro_fifo", "type": "topic", "color": "#5d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#7141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#9841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#cc41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos", "name": "actuator_servos", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8d141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#c6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#5dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#56d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#50d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#41d86c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#bf41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d841d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#d89641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#d89c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8a941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#98d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#71d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#41d5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#4152d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#8b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d8a341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#41d879", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41d880", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#41d88d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#41d893", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#41bbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#414bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#8441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#b241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#d8ca41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#d8d741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#5641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#9141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#b941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#d3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#bfd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#415fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#5041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#6341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#41d886", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#41d873", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#41d8d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#9ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}, {"id": "t_rpm", "name": "rpm", "type": "topic", "color": "#4166d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}], "links": [{"source": "m_actuator_test", "target": "t_actuator_test", "color": "#d87541", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#d88241", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#cc41d8", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#d89c41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8a941", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#d87541", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#9ed841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#98d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#91d841", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#41d879", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41d880", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#41a1d8", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#4193d8", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#b241d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#d841bd", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos", "color": "#d86841", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#d86e41", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#d8b041", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d8c441", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#b9d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#b2d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#abd841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#a5d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#7141d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#cc41d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#d84196", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#d8417b", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#d84147", "style": "dashed"}, {"source": "m_failure", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_fake_gps", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_esc_status", "color": "#bfd841", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_sensor_gyro_fifo", "color": "#5d41d8", "style": "dashed"}, {"source": "m_fake_magnetometer", "target": "t_sensor_mag", "color": "#6341d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#41d893", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#a541d8", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#d841c4", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#41d89a", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88941", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#6ad841", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#9141d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#8bd841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#84d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#7ed841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#77d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#41d893", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#41d8a7", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41d8ae", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8bb", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#41bbd8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#41b4d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#7e41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#d84189", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#7e41d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#50d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#49d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#41d845", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#41d84b", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#41d85f", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#41d866", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#41ced8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#41d86c", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#4152d8", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_servos", "color": "#d86841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_test", "color": "#d87541", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_esc_status", "color": "#bfd841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_attitude_status", "color": "#49d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_information", "color": "#43d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_mag", "color": "#6341d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_optical_flow", "color": "#6a41d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#c641d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_attitude_groundtruth", "color": "#d341d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_global_position_groundtruth", "color": "#d841b0", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_local_position_groundtruth", "color": "#d8418f", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_visual_odometry", "color": "#d84154", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#d8419c", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#41d8a1", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d8b641", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#abd841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#d84196", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_odometry", "color": "#d8417b", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8b4", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#b941d8", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d84141", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#41d893", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8c1", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#41d8c8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#d89641", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d8a341", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8bd41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#d8ca41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8d141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#d8d741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#d3d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#9ed841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#63d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#49d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#43d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#41d852", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#41d859", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#41d86c", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#41d886", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#41d88d", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#41d8a1", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#41d8ce", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#41d8d5", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#41c1d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#419ad8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro_fifo", "color": "#5d41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#6341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#6a41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#9841d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#a541d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#ab41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#b241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#bf41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#cc41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#d841d7", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#d84196", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84182", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84154", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d88941", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#8b41d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#a541d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d7", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#d841c4", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#d84189", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d84e41", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#d84175", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8bd41", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#5dd841", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#56d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41d880", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#41d8d5", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#41d5d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#41c8d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#41a7d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#415fd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#4159d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#ab41d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d841b6", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#d8419c", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#d8416e", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#d84168", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#41d873", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#d84741", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#d85b41", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d86141", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_servos", "color": "#d86841", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#d87541", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_array", "color": "#d8ca41", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_key_value", "color": "#d8d141", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_value", "color": "#d8d741", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_vect", "color": "#d3d841", "style": "dashed"}, {"source": "m_px4_simple_app", "target": "t_vehicle_attitude", "color": "#cc41d8", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#41d8c8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_servos", "color": "#d86841", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_position_controller_status", "color": "#41aed8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_attitude_setpoint", "color": "#418dd8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_position_setpoint", "color": "#4186d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_rate_setpoint", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_steering_setpoint", "color": "#4179d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_throttle_setpoint", "color": "#4173d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_velocity_setpoint", "color": "#416cd8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_attitude_setpoint", "color": "#418dd8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_position_setpoint", "color": "#4186d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_rate_setpoint", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_steering_setpoint", "color": "#4179d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_throttle_setpoint", "color": "#4173d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_velocity_setpoint", "color": "#416cd8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_actuator_motors", "color": "#d85441", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_attitude_setpoint", "color": "#418dd8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_position_setpoint", "color": "#4186d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_rate_setpoint", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_steering_setpoint", "color": "#4179d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_throttle_setpoint", "color": "#4173d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_velocity_setpoint", "color": "#416cd8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#41aed8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d7", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#b241d8", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_sensor_agp_sim", "target": "t_aux_global_position", "color": "#d88f41", "style": "dashed"}, {"source": "m_sensor_airspeed_sim", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#5041d8", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#6341d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#4341d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#7141d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#7741d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841a9", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#d841a3", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_differential_pressure", "color": "#ccd841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_esc_status", "color": "#bfd841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_input_rc", "color": "#41d886", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_irlock_report", "color": "#41d88d", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_rpm", "color": "#4166d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_baro", "color": "#4145d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro_fifo", "color": "#5d41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_mag", "color": "#6341d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_optical_flow", "color": "#6a41d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#c641d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_attitude_groundtruth", "color": "#d341d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_global_position_groundtruth", "color": "#d841b0", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_local_position_groundtruth", "color": "#d8418f", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#d84182", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_visual_odometry", "color": "#d84154", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#d87b41", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#c6d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#414bd8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#5641d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro_fifo", "color": "#5d41d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#c641d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#d341d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d841b0", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#d8418f", "style": "dashed"}, {"source": "m_system_power_simulator", "target": "t_system_power", "color": "#8441d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#4941d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_tests", "target": "t_dataman_request", "color": "#d8bd41", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#b241d8", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#b241d8", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d7", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d841d1", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#7e41d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#9e41d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#d841d7", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#d841ca", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#d84161", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#d8415b", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#d8414e", "style": "dashed"}, {"source": "t_manual_control_setpoint", "target": "m_airship_att_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airship_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#d87b41", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#b9d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#abd841", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#6ad841", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41d8ae", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#9141d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#d84161", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#4341d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#d84182", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#d84154", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_simulator", "color": "#6ad841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_battery_simulator", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_simulator", "color": "#d84168", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8a941", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#49d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#d84196", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d84141", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#d85441", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#d89641", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d8b641", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#ccd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#c6d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#bfd841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#b9d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#b2d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#abd841", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#a5d841", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#9ed841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#5dd841", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41d880", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8b4", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8c1", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#41d8c8", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#41d5d8", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#41c8d8", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#41c1d8", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#41a1d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#4159d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#6341d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#7141d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#7741d8", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#8441d8", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#9841d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#d84168", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#d8414e", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#91d841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#71d841", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#41d8c8", "style": "normal"}, {"source": "t_rpm", "target": "m_control_allocator", "color": "#4166d8", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#7e41d8", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#9e41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#d84161", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#d8415b", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8bd41", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#d87b41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#d88241", "style": "normal"}, {"source": "t_aux_global_position", "target": "m_ekf2", "color": "#d88f41", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#c6d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#41d8a1", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41d8ae", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#4341d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#7141d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#7741d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#d84154", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_failure", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fake_magnetometer", "color": "#cc41d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#8b41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#d88241", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d88941", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#77d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#d88241", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#84d841", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#7ed841", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#71d841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8a7", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8bb", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#d88241", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8c1", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#41a7d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#d84147", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#d89641", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#d8b041", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#49d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#43d841", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#41d852", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#41d859", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8c1", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#41a7d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#d8416e", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#41d86c", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#5641d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#d84168", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_fft", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_gyro_fft", "color": "#5d41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_gyro_fft", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_gyro_fft", "color": "#d841a3", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_gz_bridge", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_gz_bridge", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_gz_bridge", "color": "#d86e41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_gz_bridge", "color": "#d87541", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_gz_bridge", "color": "#50d841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_gz_bridge", "color": "#41d845", "style": "normal"}, {"source": "t_gripper", "target": "m_gz_bridge", "color": "#41d873", "style": "normal"}, {"source": "t_landing_gear", "target": "m_gz_bridge", "color": "#41d893", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_gz_bridge", "color": "#41d89a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gz_bridge", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gz_bridge", "color": "#d841d1", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#d84741", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#d88241", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41d8ae", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#41a7d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#7141d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#8b41d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#d84161", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#41d88d", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#d84196", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#d84741", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#c6d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#41d8a1", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#4341d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#d84182", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#d84154", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#d89641", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8c1", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#bf41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#d84168", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#6341d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#d84168", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d84141", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#41d8c8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#d85b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d86141", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#d87b41", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#d88241", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d88941", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#d89641", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#d89c41", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d8a341", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8a941", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d8b641", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d8c441", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#d8ca41", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8d141", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#d8d741", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#d3d841", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#ccd841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#c6d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#bfd841", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#b9d841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#b2d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#abd841", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#9ed841", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#98d841", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#8bd841", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#5dd841", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#49d841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#43d841", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#41d845", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#41d84b", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#41d85f", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#41d866", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#41d86c", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#41d879", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41d880", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#41d886", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#41d8a1", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8c1", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#41d8c8", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#41d8d5", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#41d5d8", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#41ced8", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#41bbd8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#41aed8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#41a7d8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#4193d8", "style": "normal"}, {"source": "t_rpm", "target": "m_mavlink", "color": "#4166d8", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#4159d8", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#4152d8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#5041d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#6341d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#7141d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#9141d8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#ab41d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#b941d8", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#c641d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#d84189", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#d84161", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d88941", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d84e41", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#d8415b", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#d841c4", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#d84196", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#d89641", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#d8b041", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#d88241", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#d89641", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41d880", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#41d886", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#d84168", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d8c441", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#56d841", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41d880", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#41d8a1", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#41d8d5", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#41b4d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#41aed8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#415fd8", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#ab41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#d84168", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#d841d1", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#d84741", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#d86e41", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#d87541", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#50d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#41d873", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#41d893", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#41d89a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d841d1", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#41d886", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#41d8c8", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#419ad8", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_ackermann", "color": "#d85441", "style": "normal"}, {"source": "t_actuator_servos", "target": "m_rover_ackermann", "color": "#d86841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_ackermann", "color": "#41d8c1", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_ackermann", "color": "#41c1d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_rover_ackermann", "color": "#41aed8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_ackermann", "color": "#41a7d8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_ackermann", "color": "#418dd8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_ackermann", "color": "#4186d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_ackermann", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_ackermann", "color": "#4179d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_ackermann", "color": "#4173d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_ackermann", "color": "#416cd8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_ackermann", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_ackermann", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_ackermann", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_ackermann", "color": "#d84196", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_differential", "color": "#d85441", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_differential", "color": "#41d8c1", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_differential", "color": "#41c1d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_differential", "color": "#41a7d8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_differential", "color": "#418dd8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_differential", "color": "#4186d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_differential", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_differential", "color": "#4179d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_differential", "color": "#4173d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_differential", "color": "#416cd8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_differential", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_differential", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_differential", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_differential", "color": "#d84196", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_mecanum", "color": "#d85441", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_mecanum", "color": "#41d8c1", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_mecanum", "color": "#41c1d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_mecanum", "color": "#41a7d8", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_mecanum", "color": "#418dd8", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_mecanum", "color": "#4186d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_mecanum", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_mecanum", "color": "#4179d8", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_mecanum", "color": "#4173d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_mecanum", "color": "#416cd8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_mecanum", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_mecanum", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_mecanum", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_mecanum", "color": "#d84196", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#41a7d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#d841b6", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#d84196", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#d89641", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d8b641", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#98d841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#d84168", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_agp_sim", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_sensor_airspeed_sim", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#d341d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d841b0", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#ccd841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#b2d841", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#6341d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#6a41d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#d841a3", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_mavlink", "color": "#d85b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_mavlink", "color": "#d86141", "style": "normal"}, {"source": "t_battery_status", "target": "m_simulator_mavlink", "color": "#d89641", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_simulator_mavlink", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_simulator_mavlink", "color": "#d84168", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#d85b41", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d86141", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#414bd8", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#4145d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#5641d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#6341d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d841d1", "style": "normal"}, {"source": "t_dataman_response", "target": "m_tests", "color": "#d8c441", "style": "normal"}, {"source": "t_input_rc", "target": "m_tests", "color": "#41d886", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#b241d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#41d8c1", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#d841d7", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#d84175", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#d841ca", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d84141", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#d88241", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#63d841", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41d880", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#41a7d8", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#9141d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d841d1", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#d84189", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#d84168", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_work_item_example", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_work_item_example", "color": "#d84168", "style": "normal"}]} \ No newline at end of file +{"nodes": [{"id": "m_fw_autotune_attitude_control", "name": "fw_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_autotune_attitude_control", "name": "mc_autotune_attitude_control", "type": "Module", "color": "#666666"}, {"id": "m_landing_target_estimator", "name": "landing_target_estimator", "type": "Module", "color": "#666666"}, {"id": "m_local_position_estimator", "name": "local_position_estimator", "type": "Module", "color": "#666666"}, {"id": "m_temperature_compensation", "name": "temperature_compensation", "type": "Module", "color": "#666666"}, {"id": "m_system_power_simulator", "name": "system_power_simulator", "type": "Module", "color": "#666666"}, {"id": "m_attitude_estimator_q", "name": "attitude_estimator_q", "type": "Module", "color": "#666666"}, {"id": "m_airship_att_control", "name": "airship_att_control", "type": "Module", "color": "#666666"}, {"id": "m_flight_mode_manager", "name": "flight_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_sensor_airspeed_sim", "name": "sensor_airspeed_sim", "type": "Module", "color": "#666666"}, {"id": "m_fw_lat_lon_control", "name": "fw_lat_lon_control", "type": "Module", "color": "#666666"}, {"id": "m_mag_bias_estimator", "name": "mag_bias_estimator", "type": "Module", "color": "#666666"}, {"id": "m_rover_differential", "name": "rover_differential", "type": "Module", "color": "#666666"}, {"id": "m_airspeed_selector", "name": "airspeed_selector", "type": "Module", "color": "#666666"}, {"id": "m_control_allocator", "name": "control_allocator", "type": "Module", "color": "#666666"}, {"id": "m_payload_deliverer", "name": "payload_deliverer", "type": "Module", "color": "#666666"}, {"id": "m_rover_pos_control", "name": "rover_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_battery_simulator", "name": "battery_simulator", "type": "Module", "color": "#666666"}, {"id": "m_simulator_mavlink", "name": "simulator_mavlink", "type": "Module", "color": "#666666"}, {"id": "m_fake_magnetometer", "name": "fake_magnetometer", "type": "Module", "color": "#666666"}, {"id": "m_px4_mavlink_debug", "name": "px4_mavlink_debug", "type": "Module", "color": "#666666"}, {"id": "m_work_item_example", "name": "work_item_example", "type": "Module", "color": "#666666"}, {"id": "m_gyro_calibration", "name": "gyro_calibration", "type": "Module", "color": "#666666"}, {"id": "m_uxrce_dds_client", "name": "uxrce_dds_client", "type": "Module", "color": "#666666"}, {"id": "m_vtol_att_control", "name": "vtol_att_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_feedback", "name": "camera_feedback", "type": "Module", "color": "#666666"}, {"id": "m_fw_mode_manager", "name": "fw_mode_manager", "type": "Module", "color": "#666666"}, {"id": "m_fw_rate_control", "name": "fw_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_rate_control", "name": "mc_rate_control", "type": "Module", "color": "#666666"}, {"id": "m_rover_ackermann", "name": "rover_ackermann", "type": "Module", "color": "#666666"}, {"id": "m_sensor_baro_sim", "name": "sensor_baro_sim", "type": "Module", "color": "#666666"}, {"id": "m_uuv_att_control", "name": "uuv_att_control", "type": "Module", "color": "#666666"}, {"id": "m_uuv_pos_control", "name": "uuv_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_camera_trigger", "name": "camera_trigger", "type": "Module", "color": "#666666"}, {"id": "m_fw_att_control", "name": "fw_att_control", "type": "Module", "color": "#666666"}, {"id": "m_manual_control", "name": "manual_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_att_control", "name": "mc_att_control", "type": "Module", "color": "#666666"}, {"id": "m_mc_pos_control", "name": "mc_pos_control", "type": "Module", "color": "#666666"}, {"id": "m_sensor_agp_sim", "name": "sensor_agp_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_gps_sim", "name": "sensor_gps_sim", "type": "Module", "color": "#666666"}, {"id": "m_sensor_mag_sim", "name": "sensor_mag_sim", "type": "Module", "color": "#666666"}, {"id": "m_px4_simple_app", "name": "px4_simple_app", "type": "Module", "color": "#666666"}, {"id": "m_land_detector", "name": "land_detector", "type": "Module", "color": "#666666"}, {"id": "m_rover_mecanum", "name": "rover_mecanum", "type": "Module", "color": "#666666"}, {"id": "m_simulator_sih", "name": "simulator_sih", "type": "Module", "color": "#666666"}, {"id": "m_actuator_test", "name": "actuator_test", "type": "Module", "color": "#666666"}, {"id": "m_tune_control", "name": "tune_control", "type": "Module", "color": "#666666"}, {"id": "m_pwm_out_sim", "name": "pwm_out_sim", "type": "Module", "color": "#666666"}, {"id": "m_tone_alarm", "name": "tone_alarm", "type": "Module", "color": "#666666"}, {"id": "m_send_event", "name": "send_event", "type": "Module", "color": "#666666"}, {"id": "m_commander", "name": "commander", "type": "Module", "color": "#666666"}, {"id": "m_navigator", "name": "navigator", "type": "Module", "color": "#666666"}, {"id": "m_rc_update", "name": "rc_update", "type": "Module", "color": "#666666"}, {"id": "m_gz_bridge", "name": "gz_bridge", "type": "Module", "color": "#666666"}, {"id": "m_gyro_fft", "name": "gyro_fft", "type": "Module", "color": "#666666"}, {"id": "m_load_mon", "name": "load_mon", "type": "Module", "color": "#666666"}, {"id": "m_fake_gps", "name": "fake_gps", "type": "Module", "color": "#666666"}, {"id": "m_fake_imu", "name": "fake_imu", "type": "Module", "color": "#666666"}, {"id": "m_msp_osd", "name": "msp_osd", "type": "Module", "color": "#666666"}, {"id": "m_dataman", "name": "dataman", "type": "Module", "color": "#666666"}, {"id": "m_mavlink", "name": "mavlink", "type": "Module", "color": "#666666"}, {"id": "m_sensors", "name": "sensors", "type": "Module", "color": "#666666"}, {"id": "m_failure", "name": "failure", "type": "Module", "color": "#666666"}, {"id": "m_gimbal", "name": "gimbal", "type": "Module", "color": "#666666"}, {"id": "m_logger", "name": "logger", "type": "Module", "color": "#666666"}, {"id": "m_tests", "name": "tests", "type": "Module", "color": "#666666"}, {"id": "m_ekf2", "name": "ekf2", "type": "Module", "color": "#666666"}, {"id": "m_gps", "name": "gps", "type": "Module", "color": "#666666"}, {"id": "t_vehicle_angular_velocity_groundtruth", "name": "vehicle_angular_velocity_groundtruth", "type": "topic", "color": "#41d852", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position_groundtruth", "name": "vehicle_global_position_groundtruth", "type": "topic", "color": "#d8419c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_groundtruth", "name": "vehicle_local_position_groundtruth", "type": "topic", "color": "#a5d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_landing_status", "name": "position_controller_landing_status", "type": "topic", "color": "#50d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_longitudinal_control_configuration", "name": "longitudinal_control_configuration", "type": "topic", "color": "#41d8bb", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_manual_control", "name": "gimbal_manager_set_manual_control", "type": "topic", "color": "#d841b6", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_autotune_attitude_control_status", "name": "autotune_attitude_control_status", "type": "topic", "color": "#d89c41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_longitudinal_setpoint", "name": "fixed_wing_longitudinal_setpoint", "type": "topic", "color": "#bf41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position_setpoint", "name": "vehicle_local_position_setpoint", "type": "topic", "color": "#4186d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_attitude_status", "name": "gimbal_device_attitude_status", "type": "topic", "color": "#d86141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_lateral_control_configuration", "name": "lateral_control_configuration", "type": "topic", "color": "#77d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mc_virtual_attitude_setpoint", "name": "mc_virtual_attitude_setpoint", "type": "topic", "color": "#41d886", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_groundtruth", "name": "vehicle_attitude_groundtruth", "type": "topic", "color": "#4173d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_register_ext_component_reply", "name": "register_ext_component_reply", "type": "topic", "color": "#d341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fw_virtual_attitude_setpoint", "name": "fw_virtual_attitude_setpoint", "type": "topic", "color": "#d84182", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_lateral_setpoint", "name": "fixed_wing_lateral_setpoint", "type": "topic", "color": "#41d893", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_set_attitude", "name": "gimbal_manager_set_attitude", "type": "topic", "color": "#ab41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_controls_status_0", "name": "actuator_controls_status_0", "type": "topic", "color": "#d8a941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorControlsStatus.msg"}, {"id": "t_gimbal_manager_information", "name": "gimbal_manager_information", "type": "topic", "color": "#c6d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_controller_status", "name": "position_controller_status", "type": "topic", "color": "#5dd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_set_attitude", "name": "gimbal_device_set_attitude", "type": "topic", "color": "#415fd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_fixed_wing_runway_control", "name": "fixed_wing_runway_control", "type": "topic", "color": "#4159d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_attitude_setpoint", "name": "vehicle_attitude_setpoint", "type": "topic", "color": "#5041d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_device_information", "name": "gimbal_device_information", "type": "topic", "color": "#d841ca", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_position_setpoint_triplet", "name": "position_setpoint_triplet", "type": "topic", "color": "#d84154", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_selector_status", "name": "estimator_selector_status", "type": "topic", "color": "#d84147", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tiltrotor_extra_controls", "name": "tiltrotor_extra_controls", "type": "topic", "color": "#d84741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_control_allocator_status", "name": "control_allocator_status", "type": "topic", "color": "#4179d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_steering_setpoint", "name": "rover_steering_setpoint", "type": "topic", "color": "#d86e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_global_position", "name": "vehicle_global_position", "type": "topic", "color": "#d87541", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_position_setpoint", "name": "rover_position_setpoint", "type": "topic", "color": "#d8c441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_throttle_setpoint", "name": "rover_throttle_setpoint", "type": "topic", "color": "#d3d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_switches", "name": "manual_control_switches", "type": "topic", "color": "#ccd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_velocity_setpoint", "name": "rover_velocity_setpoint", "type": "topic", "color": "#b9d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_thrust_setpoint", "name": "vehicle_thrust_setpoint", "type": "topic", "color": "#41d879", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleThrustSetpoint.msg"}, {"id": "t_failure_detector_status", "name": "failure_detector_status", "type": "topic", "color": "#41d8ae", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_manual_control_setpoint", "name": "manual_control_setpoint", "type": "topic", "color": "#41d8ce", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_launch_detection_status", "name": "launch_detection_status", "type": "topic", "color": "#41c8d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_visual_odometry", "name": "vehicle_visual_odometry", "type": "topic", "color": "#414bd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rover_attitude_setpoint", "name": "rover_attitude_setpoint", "type": "topic", "color": "#5d41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_torque_setpoint", "name": "vehicle_torque_setpoint", "type": "topic", "color": "#6341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/VehicleTorqueSetpoint.msg"}, {"id": "t_flight_phase_estimation", "name": "flight_phase_estimation", "type": "topic", "color": "#8b41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_rates_setpoint", "name": "vehicle_rates_setpoint", "type": "topic", "color": "#71d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status_flags", "name": "estimator_status_flags", "type": "topic", "color": "#41d8a1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_local_position", "name": "vehicle_local_position", "type": "topic", "color": "#b941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_mocap_odometry", "name": "vehicle_mocap_odometry", "type": "topic", "color": "#c641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_land_detected", "name": "vehicle_land_detected", "type": "topic", "color": "#7ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_sensor_bias", "name": "estimator_sensor_bias", "type": "topic", "color": "#41d866", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_manager_status", "name": "gimbal_manager_status", "type": "topic", "color": "#4193d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_offboard_control_mode", "name": "offboard_control_mode", "type": "topic", "color": "#4152d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_differential_pressure", "name": "differential_pressure", "type": "topic", "color": "#d841d1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_control_mode", "name": "vehicle_control_mode", "type": "topic", "color": "#41d84b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos_trim", "name": "actuator_servos_trim", "type": "topic", "color": "#41c1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs_sim", "name": "actuator_outputs_sim", "type": "topic", "color": "#d841bd", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_rover_rate_setpoint", "name": "rover_rate_setpoint", "type": "topic", "color": "#d84e41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_figure_eight_status", "name": "figure_eight_status", "type": "topic", "color": "#d85b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_optical_flow", "name": "sensor_optical_flow", "type": "topic", "color": "#d8ca41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_target_pose", "name": "landing_target_pose", "type": "topic", "color": "#6ad841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command_ack", "name": "vehicle_command_ack", "type": "topic", "color": "#41d845", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vtol_vehicle_status", "name": "vtol_vehicle_status", "type": "topic", "color": "#41d859", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_constraints", "name": "vehicle_constraints", "type": "topic", "color": "#41d873", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_aux_global_position", "name": "aux_global_position", "type": "topic", "color": "#cc41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource2d.msg"}, {"id": "t_trajectory_setpoint", "name": "trajectory_setpoint", "type": "topic", "color": "#d8416e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_power_button_state", "name": "power_button_state", "type": "topic", "color": "#98d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_transponder_report", "name": "transponder_report", "type": "topic", "color": "#91d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu_status", "name": "vehicle_imu_status", "type": "topic", "color": "#41d5d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensors_status_imu", "name": "sensors_status_imu", "type": "topic", "color": "#419ad8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed_validated", "name": "airspeed_validated", "type": "topic", "color": "#4166d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear_wheel", "name": "landing_gear_wheel", "type": "topic", "color": "#6a41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_v1_command", "name": "gimbal_v1_command", "type": "topic", "color": "#bfd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_correction", "name": "sensor_correction", "type": "topic", "color": "#41a7d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mount_orientation", "name": "mount_orientation", "type": "topic", "color": "#9841d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_spoilers_setpoint", "name": "spoilers_setpoint", "type": "topic", "color": "#d841c4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_rtl_time_estimate", "name": "rtl_time_estimate", "type": "topic", "color": "#d8417b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_response", "name": "dataman_response", "type": "topic", "color": "#d84141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_telemetry_status", "name": "telemetry_status", "type": "topic", "color": "#d85441", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_estimator_status", "name": "estimator_status", "type": "topic", "color": "#d86841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro_fifo", "name": "sensor_gyro_fifo", "type": "topic", "color": "#d88241", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_odometry", "name": "vehicle_odometry", "type": "topic", "color": "#9ed841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_navigator_status", "name": "navigator_status", "type": "topic", "color": "#49d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_selection", "name": "sensor_selection", "type": "topic", "color": "#41d880", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rc_parameter_map", "name": "rc_parameter_map", "type": "topic", "color": "#416cd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_outputs", "name": "actuator_outputs", "type": "topic", "color": "#a541d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ActuatorOutputs.msg"}, {"id": "t_vehicle_attitude", "name": "vehicle_attitude", "type": "topic", "color": "#d84175", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gps_inject_data", "name": "gps_inject_data", "type": "topic", "color": "#d87b41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_command", "name": "vehicle_command", "type": "topic", "color": "#d8bd41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_key_value", "name": "debug_key_value", "type": "topic", "color": "#d8d141", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_result", "name": "geofence_result", "type": "topic", "color": "#41d85f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_servos", "name": "actuator_servos", "type": "topic", "color": "#41d86c", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_distance_sensor", "name": "distance_sensor", "type": "topic", "color": "#41d88d", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_geofence_status", "name": "geofence_status", "type": "topic", "color": "#41d8b4", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gimbal_controls", "name": "gimbal_controls", "type": "topic", "color": "#41b4d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_motors", "name": "actuator_motors", "type": "topic", "color": "#4180d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream_ack", "name": "ulog_stream_ack", "type": "topic", "color": "#b241d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_combined", "name": "sensor_combined", "type": "topic", "color": "#d84196", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_dataman_request", "name": "dataman_request", "type": "topic", "color": "#d8414e", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_satellite_info", "name": "satellite_info", "type": "topic", "color": "#d8a341", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_takeoff_status", "name": "takeoff_status", "type": "topic", "color": "#b2d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_capture", "name": "camera_capture", "type": "topic", "color": "#63d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_status", "name": "vehicle_status", "type": "topic", "color": "#41ced8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_battery_status", "name": "battery_status", "type": "topic", "color": "#7141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_failsafe_flags", "name": "failsafe_flags", "type": "topic", "color": "#7e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_armed", "name": "actuator_armed", "type": "topic", "color": "#8441d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_mission_result", "name": "mission_result", "type": "topic", "color": "#d841d7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_action_request", "name": "action_request", "type": "topic", "color": "#d8418f", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_flaps_setpoint", "name": "flaps_setpoint", "type": "topic", "color": "#d84168", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/NormalizedUnsignedSetpoint.msg"}, {"id": "t_camera_trigger", "name": "camera_trigger", "type": "topic", "color": "#d8415b", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_actuator_test", "name": "actuator_test", "type": "topic", "color": "#84d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_health_report", "name": "health_report", "type": "topic", "color": "#56d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_logger_status", "name": "logger_status", "type": "topic", "color": "#41d8d5", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_home_position", "name": "home_position", "type": "topic", "color": "#41a1d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_irlock_report", "name": "irlock_report", "type": "topic", "color": "#5641d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_camera_status", "name": "camera_status", "type": "topic", "color": "#d84189", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_accel", "name": "sensor_accel", "type": "topic", "color": "#d88941", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_orbit_status", "name": "orbit_status", "type": "topic", "color": "#d89641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tune_control", "name": "tune_control", "type": "topic", "color": "#d8b641", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_system_power", "name": "system_power", "type": "topic", "color": "#4145d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_landing_gear", "name": "landing_gear", "type": "topic", "color": "#d84161", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_array", "name": "debug_array", "type": "topic", "color": "#41d8c1", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_tecs_status", "name": "tecs_status", "type": "topic", "color": "#41d8c8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_roi", "name": "vehicle_roi", "type": "topic", "color": "#418dd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_value", "name": "debug_value", "type": "topic", "color": "#4341d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gyro", "name": "sensor_gyro", "type": "topic", "color": "#4941d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_ulog_stream", "name": "ulog_stream", "type": "topic", "color": "#7741d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_baro", "name": "sensor_baro", "type": "topic", "color": "#d841b0", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_vehicle_imu", "name": "vehicle_imu", "type": "topic", "color": "#d841a9", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_mag", "name": "sensor_mag", "type": "topic", "color": "#abd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_sensor_gps", "name": "sensor_gps", "type": "topic", "color": "#8bd841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/SensorGps.msg"}, {"id": "t_esc_status", "name": "esc_status", "type": "topic", "color": "#41d8a7", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_debug_vect", "name": "debug_vect", "type": "topic", "color": "#41aed8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_rtl_status", "name": "rtl_status", "type": "topic", "color": "#9e41d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_input_rc", "name": "input_rc", "type": "topic", "color": "#d8d741", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_airspeed", "name": "airspeed", "type": "topic", "color": "#41bbd8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/EstimatorAidSource1d.msg"}, {"id": "t_mission", "name": "mission", "type": "topic", "color": "#d88f41", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_gripper", "name": "gripper", "type": "topic", "color": "#41d89a", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_cpuload", "name": "cpuload", "type": "topic", "color": "#d841a3", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}, {"id": "t_event", "name": "event", "type": "topic", "color": "#d8b041", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/ButtonEvent.msg"}, {"id": "t_wind", "name": "wind", "type": "topic", "color": "#43d841", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/Wind.msg"}, {"id": "t_rpm", "name": "rpm", "type": "topic", "color": "#9141d8", "url": "https://github.com/PX4/PX4-Autopilot/blob/main/msg/no_file.msg"}], "links": [{"source": "m_camera_trigger", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_camera_trigger", "target": "t_camera_trigger", "color": "#d8415b", "style": "dashed"}, {"source": "m_gps", "target": "t_sensor_gps", "color": "#8bd841", "style": "dashed"}, {"source": "m_gps", "target": "t_gps_inject_data", "color": "#d87b41", "style": "dashed"}, {"source": "m_gps", "target": "t_satellite_info", "color": "#d8a341", "style": "dashed"}, {"source": "m_tone_alarm", "target": "t_tune_control", "color": "#d8b641", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#41d879", "style": "dashed"}, {"source": "m_airship_att_control", "target": "t_vehicle_torque_setpoint", "color": "#6341d8", "style": "dashed"}, {"source": "m_airspeed_selector", "target": "t_airspeed_validated", "color": "#4166d8", "style": "dashed"}, {"source": "m_attitude_estimator_q", "target": "t_vehicle_attitude", "color": "#d84175", "style": "dashed"}, {"source": "m_camera_feedback", "target": "t_camera_capture", "color": "#63d841", "style": "dashed"}, {"source": "m_commander", "target": "t_register_ext_component_reply", "color": "#d341d8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_test", "color": "#84d841", "style": "dashed"}, {"source": "m_commander", "target": "t_event", "color": "#d8b041", "style": "dashed"}, {"source": "m_commander", "target": "t_health_report", "color": "#56d841", "style": "dashed"}, {"source": "m_commander", "target": "t_failsafe_flags", "color": "#7e41d8", "style": "dashed"}, {"source": "m_commander", "target": "t_actuator_armed", "color": "#8441d8", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_control_mode", "color": "#41d84b", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_status", "color": "#41ced8", "style": "dashed"}, {"source": "m_commander", "target": "t_power_button_state", "color": "#98d841", "style": "dashed"}, {"source": "m_commander", "target": "t_tune_control", "color": "#d8b641", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_commander", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_commander", "target": "t_failure_detector_status", "color": "#41d8ae", "style": "dashed"}, {"source": "m_commander", "target": "t_home_position", "color": "#41a1d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_motors", "color": "#4180d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos_trim", "color": "#41c1d8", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_actuator_servos", "color": "#41d86c", "style": "dashed"}, {"source": "m_control_allocator", "target": "t_control_allocator_status", "color": "#4179d8", "style": "dashed"}, {"source": "m_dataman", "target": "t_dataman_response", "color": "#d84141", "style": "dashed"}, {"source": "m_ekf2", "target": "t_wind", "color": "#43d841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_local_position", "color": "#b941d8", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status", "color": "#d86841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_global_position", "color": "#d87541", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_sensor_bias", "color": "#41d866", "style": "dashed"}, {"source": "m_ekf2", "target": "t_sensor_selection", "color": "#41d880", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_status_flags", "color": "#41d8a1", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_odometry", "color": "#9ed841", "style": "dashed"}, {"source": "m_ekf2", "target": "t_vehicle_attitude", "color": "#d84175", "style": "dashed"}, {"source": "m_ekf2", "target": "t_estimator_selector_status", "color": "#d84147", "style": "dashed"}, {"source": "m_send_event", "target": "t_tune_control", "color": "#d8b641", "style": "dashed"}, {"source": "m_send_event", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_vehicle_constraints", "color": "#41d873", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_landing_gear", "color": "#d84161", "style": "dashed"}, {"source": "m_flight_mode_manager", "target": "t_trajectory_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_landing_gear_wheel", "color": "#6a41d8", "style": "dashed"}, {"source": "m_fw_att_control", "target": "t_vehicle_rates_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_fw_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d89c41", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_flight_phase_estimation", "color": "#8b41d8", "style": "dashed"}, {"source": "m_fw_lat_lon_control", "target": "t_tecs_status", "color": "#41d8c8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_longitudinal_control_configuration", "color": "#41d8bb", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_lateral_control_configuration", "color": "#77d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_lateral_setpoint", "color": "#41d893", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_spoilers_setpoint", "color": "#d841c4", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_position_controller_landing_status", "color": "#50d841", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_vehicle_local_position_setpoint", "color": "#4186d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_flaps_setpoint", "color": "#d84168", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_orbit_status", "color": "#d89641", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_landing_gear", "color": "#d84161", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_figure_eight_status", "color": "#d85b41", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_launch_detection_status", "color": "#41c8d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_longitudinal_setpoint", "color": "#bf41d8", "style": "dashed"}, {"source": "m_fw_mode_manager", "target": "t_fixed_wing_runway_control", "color": "#4159d8", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_flaps_setpoint", "color": "#d84168", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_spoilers_setpoint", "color": "#d841c4", "style": "dashed"}, {"source": "m_fw_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_information", "color": "#c6d841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_v1_command", "color": "#bfd841", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_manager_status", "color": "#4193d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_set_attitude", "color": "#415fd8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_mount_orientation", "color": "#9841d8", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_device_attitude_status", "color": "#d86141", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_gimbal", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_gimbal", "target": "t_gimbal_controls", "color": "#41b4d8", "style": "dashed"}, {"source": "m_land_detector", "target": "t_vehicle_land_detected", "color": "#7ed841", "style": "dashed"}, {"source": "m_landing_target_estimator", "target": "t_landing_target_pose", "color": "#6ad841", "style": "dashed"}, {"source": "m_load_mon", "target": "t_cpuload", "color": "#d841a3", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_global_position", "color": "#d87541", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_odometry", "color": "#9ed841", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_vehicle_local_position", "color": "#b941d8", "style": "dashed"}, {"source": "m_local_position_estimator", "target": "t_estimator_status", "color": "#d86841", "style": "dashed"}, {"source": "m_logger", "target": "t_logger_status", "color": "#41d8d5", "style": "dashed"}, {"source": "m_logger", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_logger", "target": "t_ulog_stream", "color": "#7741d8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_switches", "color": "#ccd841", "style": "dashed"}, {"source": "m_manual_control", "target": "t_manual_control_setpoint", "color": "#41d8ce", "style": "dashed"}, {"source": "m_manual_control", "target": "t_landing_gear", "color": "#d84161", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_status", "color": "#41ced8", "style": "dashed"}, {"source": "m_manual_control", "target": "t_action_request", "color": "#d8418f", "style": "dashed"}, {"source": "m_manual_control", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_vect", "color": "#41aed8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_attitude", "color": "#ab41d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_ulog_stream_ack", "color": "#b241d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_telemetry_status", "color": "#d85441", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_local_position", "color": "#b941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_attitude_status", "color": "#d86141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#c641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_global_position", "color": "#d87541", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gps_inject_data", "color": "#d87b41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_differential_pressure", "color": "#d841d1", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_device_information", "color": "#d841ca", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro_fifo", "color": "#d88241", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_accel", "color": "#d88941", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mission", "color": "#d88f41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_rc_parameter_map", "color": "#416cd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_gimbal_manager_set_manual_control", "color": "#d841b6", "style": "dashed"}, {"source": "m_mavlink", "target": "t_event", "color": "#d8b041", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_baro", "color": "#d841b0", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_optical_flow", "color": "#d8ca41", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_key_value", "color": "#d8d141", "style": "dashed"}, {"source": "m_mavlink", "target": "t_tune_control", "color": "#d8b641", "style": "dashed"}, {"source": "m_mavlink", "target": "t_input_rc", "color": "#d8d741", "style": "dashed"}, {"source": "m_mavlink", "target": "t_mc_virtual_attitude_setpoint", "color": "#41d886", "style": "dashed"}, {"source": "m_mavlink", "target": "t_offboard_control_mode", "color": "#4152d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_visual_odometry", "color": "#414bd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_distance_sensor", "color": "#41d88d", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_value", "color": "#4341d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude_setpoint", "color": "#5041d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_irlock_report", "color": "#5641d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_mag", "color": "#abd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gyro", "color": "#4941d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_fw_virtual_attitude_setpoint", "color": "#d84182", "style": "dashed"}, {"source": "m_mavlink", "target": "t_camera_status", "color": "#d84189", "style": "dashed"}, {"source": "m_mavlink", "target": "t_battery_status", "color": "#7141d8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_transponder_report", "color": "#91d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_sensor_gps", "color": "#8bd841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_rates_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_debug_array", "color": "#41d8c1", "style": "dashed"}, {"source": "m_mavlink", "target": "t_vehicle_attitude", "color": "#d84175", "style": "dashed"}, {"source": "m_mavlink", "target": "t_trajectory_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_mavlink", "target": "t_landing_target_pose", "color": "#6ad841", "style": "dashed"}, {"source": "m_mavlink", "target": "t_airspeed", "color": "#41bbd8", "style": "dashed"}, {"source": "m_mavlink", "target": "t_dataman_request", "color": "#d8414e", "style": "dashed"}, {"source": "m_mc_att_control", "target": "t_vehicle_rates_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_mc_autotune_attitude_control", "target": "t_autotune_attitude_control_status", "color": "#d89c41", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_trajectory_setpoint", "color": "#d8416e", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_local_position_setpoint", "color": "#4186d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#5041d8", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_takeoff_status", "color": "#b2d841", "style": "dashed"}, {"source": "m_mc_pos_control", "target": "t_vehicle_constraints", "color": "#41d873", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_vehicle_rates_setpoint", "color": "#71d841", "style": "dashed"}, {"source": "m_mc_rate_control", "target": "t_actuator_controls_status_0", "color": "#d8a941", "style": "dashed"}, {"source": "m_navigator", "target": "t_navigator_status", "color": "#49d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_navigator", "target": "t_home_position", "color": "#41a1d8", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_global_position", "color": "#d87541", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission_result", "color": "#d841d7", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_roi", "color": "#418dd8", "style": "dashed"}, {"source": "m_navigator", "target": "t_mission", "color": "#d88f41", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_result", "color": "#41d85f", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_navigator", "target": "t_geofence_status", "color": "#41d8b4", "style": "dashed"}, {"source": "m_navigator", "target": "t_transponder_report", "color": "#91d841", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_time_estimate", "color": "#d8417b", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_land_detected", "color": "#7ed841", "style": "dashed"}, {"source": "m_navigator", "target": "t_vehicle_status", "color": "#41ced8", "style": "dashed"}, {"source": "m_navigator", "target": "t_position_setpoint_triplet", "color": "#d84154", "style": "dashed"}, {"source": "m_navigator", "target": "t_dataman_request", "color": "#d8414e", "style": "dashed"}, {"source": "m_navigator", "target": "t_rtl_status", "color": "#9e41d8", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_gripper", "color": "#41d89a", "style": "dashed"}, {"source": "m_payload_deliverer", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_rc_update", "target": "t_manual_control_switches", "color": "#ccd841", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_position_controller_status", "color": "#5dd841", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_velocity_setpoint", "color": "#b9d841", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_motors", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_rate_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_attitude_setpoint", "color": "#5d41d8", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_actuator_servos", "color": "#41d86c", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_position_setpoint", "color": "#d8c441", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_steering_setpoint", "color": "#d86e41", "style": "dashed"}, {"source": "m_rover_ackermann", "target": "t_rover_throttle_setpoint", "color": "#d3d841", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_velocity_setpoint", "color": "#b9d841", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_rate_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_actuator_motors", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_attitude_setpoint", "color": "#5d41d8", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_position_setpoint", "color": "#d8c441", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_steering_setpoint", "color": "#d86e41", "style": "dashed"}, {"source": "m_rover_differential", "target": "t_rover_throttle_setpoint", "color": "#d3d841", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_velocity_setpoint", "color": "#b9d841", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_actuator_motors", "color": "#4180d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_rate_setpoint", "color": "#d84e41", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_attitude_setpoint", "color": "#5d41d8", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_position_setpoint", "color": "#d8c441", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_steering_setpoint", "color": "#d86e41", "style": "dashed"}, {"source": "m_rover_mecanum", "target": "t_rover_throttle_setpoint", "color": "#d3d841", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_thrust_setpoint", "color": "#41d879", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_position_controller_status", "color": "#5dd841", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#5041d8", "style": "dashed"}, {"source": "m_rover_pos_control", "target": "t_vehicle_torque_setpoint", "color": "#6341d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu", "color": "#d841a9", "style": "dashed"}, {"source": "m_sensors", "target": "t_differential_pressure", "color": "#d841d1", "style": "dashed"}, {"source": "m_sensors", "target": "t_vehicle_imu_status", "color": "#41d5d8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_combined", "color": "#d84196", "style": "dashed"}, {"source": "m_sensors", "target": "t_airspeed", "color": "#41bbd8", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensor_selection", "color": "#41d880", "style": "dashed"}, {"source": "m_sensors", "target": "t_sensors_status_imu", "color": "#419ad8", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_battery_simulator", "target": "t_battery_status", "color": "#7141d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_outputs", "color": "#a541d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_attitude_status", "color": "#d86141", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#41d852", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_differential_pressure", "color": "#d841d1", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_gimbal_device_information", "color": "#d841ca", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_accel", "color": "#d88941", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_attitude_groundtruth", "color": "#4173d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_motors", "color": "#4180d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_servos", "color": "#41d86c", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_baro", "color": "#d841b0", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_optical_flow", "color": "#d8ca41", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_visual_odometry", "color": "#414bd8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_distance_sensor", "color": "#41d88d", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_global_position_groundtruth", "color": "#d8419c", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gyro", "color": "#4941d8", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_vehicle_local_position_groundtruth", "color": "#a5d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_mag", "color": "#abd841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_esc_status", "color": "#41d8a7", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_sensor_gps", "color": "#8bd841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_test", "color": "#84d841", "style": "dashed"}, {"source": "m_gz_bridge", "target": "t_actuator_armed", "color": "#8441d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_test", "color": "#84d841", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs", "color": "#a541d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_outputs_sim", "color": "#d841bd", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_motors", "color": "#4180d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_armed", "color": "#8441d8", "style": "dashed"}, {"source": "m_pwm_out_sim", "target": "t_actuator_servos", "color": "#41d86c", "style": "dashed"}, {"source": "m_sensor_agp_sim", "target": "t_aux_global_position", "color": "#cc41d8", "style": "dashed"}, {"source": "m_sensor_airspeed_sim", "target": "t_differential_pressure", "color": "#d841d1", "style": "dashed"}, {"source": "m_sensor_baro_sim", "target": "t_sensor_baro", "color": "#d841b0", "style": "dashed"}, {"source": "m_sensor_gps_sim", "target": "t_sensor_gps", "color": "#8bd841", "style": "dashed"}, {"source": "m_sensor_mag_sim", "target": "t_sensor_mag", "color": "#abd841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_mocap_odometry", "color": "#c641d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#41d852", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro_fifo", "color": "#d88241", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_differential_pressure", "color": "#d841d1", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_accel", "color": "#d88941", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_attitude_groundtruth", "color": "#4173d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_baro", "color": "#d841b0", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_optical_flow", "color": "#d8ca41", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_input_rc", "color": "#d8d741", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_visual_odometry", "color": "#414bd8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_global_position_groundtruth", "color": "#d8419c", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_gyro", "color": "#4941d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_irlock_report", "color": "#5641d8", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_vehicle_local_position_groundtruth", "color": "#a5d841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_sensor_mag", "color": "#abd841", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_esc_status", "color": "#41d8a7", "style": "dashed"}, {"source": "m_simulator_mavlink", "target": "t_rpm", "color": "#9141d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_distance_sensor", "color": "#41d88d", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro_fifo", "color": "#d88241", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_global_position_groundtruth", "color": "#d8419c", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_accel", "color": "#d88941", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_attitude_groundtruth", "color": "#4173d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_sensor_gyro", "color": "#4941d8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_local_position_groundtruth", "color": "#a5d841", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_airspeed", "color": "#41bbd8", "style": "dashed"}, {"source": "m_simulator_sih", "target": "t_vehicle_angular_velocity_groundtruth", "color": "#41d852", "style": "dashed"}, {"source": "m_system_power_simulator", "target": "t_system_power", "color": "#4145d8", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_temperature_compensation", "target": "t_sensor_correction", "color": "#41a7d8", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#41d879", "style": "dashed"}, {"source": "m_uuv_att_control", "target": "t_vehicle_torque_setpoint", "color": "#6341d8", "style": "dashed"}, {"source": "m_uuv_pos_control", "target": "t_vehicle_attitude_setpoint", "color": "#5041d8", "style": "dashed"}, {"source": "m_uxrce_dds_client", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_tiltrotor_extra_controls", "color": "#d84741", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vtol_vehicle_status", "color": "#41d859", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_spoilers_setpoint", "color": "#d841c4", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_attitude_setpoint", "color": "#5041d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_flaps_setpoint", "color": "#d84168", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_command_ack", "color": "#41d845", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_torque_setpoint", "color": "#6341d8", "style": "dashed"}, {"source": "m_vtol_att_control", "target": "t_vehicle_thrust_setpoint", "color": "#41d879", "style": "dashed"}, {"source": "m_actuator_test", "target": "t_actuator_test", "color": "#84d841", "style": "dashed"}, {"source": "m_failure", "target": "t_vehicle_command", "color": "#d8bd41", "style": "dashed"}, {"source": "m_tests", "target": "t_dataman_request", "color": "#d8414e", "style": "dashed"}, {"source": "m_tune_control", "target": "t_tune_control", "color": "#d8b641", "style": "dashed"}, {"source": "m_fake_gps", "target": "t_sensor_gps", "color": "#8bd841", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_sensor_gyro_fifo", "color": "#d88241", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_sensor_accel", "color": "#d88941", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_sensor_gyro", "color": "#4941d8", "style": "dashed"}, {"source": "m_fake_imu", "target": "t_esc_status", "color": "#41d8a7", "style": "dashed"}, {"source": "m_fake_magnetometer", "target": "t_sensor_mag", "color": "#abd841", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_vect", "color": "#41aed8", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_array", "color": "#41d8c1", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_key_value", "color": "#d8d141", "style": "dashed"}, {"source": "m_px4_mavlink_debug", "target": "t_debug_value", "color": "#4341d8", "style": "dashed"}, {"source": "m_px4_simple_app", "target": "t_vehicle_attitude", "color": "#d84175", "style": "dashed"}, {"source": "t_vehicle_command", "target": "m_camera_trigger", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_camera_trigger", "color": "#b941d8", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_gps", "color": "#d87b41", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_msp_osd", "color": "#d87541", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_msp_osd", "color": "#d84175", "style": "normal"}, {"source": "t_home_position", "target": "m_msp_osd", "color": "#41a1d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_msp_osd", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_msp_osd", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_msp_osd", "color": "#b941d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_msp_osd", "color": "#7141d8", "style": "normal"}, {"source": "t_input_rc", "target": "m_msp_osd", "color": "#d8d741", "style": "normal"}, {"source": "t_tune_control", "target": "m_tone_alarm", "color": "#d8b641", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airship_att_control", "color": "#41ced8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_airship_att_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_airspeed_selector", "color": "#7ed841", "style": "normal"}, {"source": "t_tecs_status", "target": "m_airspeed_selector", "color": "#41d8c8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_airspeed_selector", "color": "#d84175", "style": "normal"}, {"source": "t_airspeed", "target": "m_airspeed_selector", "color": "#41bbd8", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_airspeed_selector", "color": "#8b41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_airspeed_selector", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_airspeed_selector", "color": "#b941d8", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_airspeed_selector", "color": "#41c8d8", "style": "normal"}, {"source": "t_estimator_status", "target": "m_airspeed_selector", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_airspeed_selector", "color": "#41d879", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_airspeed_selector", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_attitude_estimator_q", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_attitude_estimator_q", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_attitude_estimator_q", "color": "#b941d8", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_attitude_estimator_q", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_attitude_estimator_q", "color": "#c641d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_camera_feedback", "color": "#d87541", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_camera_feedback", "color": "#d84175", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_camera_feedback", "color": "#d8415b", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_camera_feedback", "color": "#d86141", "style": "normal"}, {"source": "t_navigator_status", "target": "m_commander", "color": "#49d841", "style": "normal"}, {"source": "t_telemetry_status", "target": "m_commander", "color": "#d85441", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_commander", "color": "#b941d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_commander", "color": "#41a7d8", "style": "normal"}, {"source": "t_wind", "target": "m_commander", "color": "#43d841", "style": "normal"}, {"source": "t_estimator_status", "target": "m_commander", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_commander", "color": "#41d845", "style": "normal"}, {"source": "t_home_position", "target": "m_commander", "color": "#41a1d8", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_commander", "color": "#419ad8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_commander", "color": "#d87541", "style": "normal"}, {"source": "t_vtol_vehicle_status", "target": "m_commander", "color": "#41d859", "style": "normal"}, {"source": "t_mission_result", "target": "m_commander", "color": "#d841d7", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_commander", "color": "#d841d1", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_commander", "color": "#d88941", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_commander", "color": "#4180d8", "style": "normal"}, {"source": "t_geofence_result", "target": "m_commander", "color": "#41d85f", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_commander", "color": "#4166d8", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_commander", "color": "#41d866", "style": "normal"}, {"source": "t_event", "target": "m_commander", "color": "#d8b041", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_commander", "color": "#d8bd41", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_commander", "color": "#d841b0", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_commander", "color": "#41d880", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_commander", "color": "#4152d8", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_commander", "color": "#41d88d", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_commander", "color": "#ccd841", "style": "normal"}, {"source": "t_cpuload", "target": "m_commander", "color": "#d841a3", "style": "normal"}, {"source": "t_system_power", "target": "m_commander", "color": "#4145d8", "style": "normal"}, {"source": "t_estimator_status_flags", "target": "m_commander", "color": "#41d8a1", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_commander", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_commander", "color": "#abd841", "style": "normal"}, {"source": "t_action_request", "target": "m_commander", "color": "#d8418f", "style": "normal"}, {"source": "t_power_button_state", "target": "m_commander", "color": "#98d841", "style": "normal"}, {"source": "t_esc_status", "target": "m_commander", "color": "#41d8a7", "style": "normal"}, {"source": "t_battery_status", "target": "m_commander", "color": "#7141d8", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_commander", "color": "#8bd841", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_commander", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_commander", "color": "#7ed841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_commander", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_commander", "color": "#d84175", "style": "normal"}, {"source": "t_logger_status", "target": "m_commander", "color": "#41d8d5", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_commander", "color": "#41d5d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_commander", "color": "#8441d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_commander", "color": "#41ced8", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_commander", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_control_allocator", "color": "#41d879", "style": "normal"}, {"source": "t_tiltrotor_extra_controls", "target": "m_control_allocator", "color": "#d84741", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_control_allocator", "color": "#ccd841", "style": "normal"}, {"source": "t_spoilers_setpoint", "target": "m_control_allocator", "color": "#d841c4", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_control_allocator", "color": "#d84168", "style": "normal"}, {"source": "t_rpm", "target": "m_control_allocator", "color": "#9141d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_control_allocator", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_control_allocator", "color": "#6341d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_control_allocator", "color": "#41d84b", "style": "normal"}, {"source": "t_failure_detector_status", "target": "m_control_allocator", "color": "#41d8ae", "style": "normal"}, {"source": "t_dataman_request", "target": "m_dataman", "color": "#d8414e", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_ekf2", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_ekf2", "color": "#d841a9", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_ekf2", "color": "#7ed841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_ekf2", "color": "#41d88d", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_ekf2", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_ekf2", "color": "#41ced8", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_ekf2", "color": "#41c8d8", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_ekf2", "color": "#d84196", "style": "normal"}, {"source": "t_aux_global_position", "target": "m_ekf2", "color": "#cc41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_ekf2", "color": "#d8bd41", "style": "normal"}, {"source": "t_airspeed", "target": "m_ekf2", "color": "#41bbd8", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_ekf2", "color": "#6ad841", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_ekf2", "color": "#41d880", "style": "normal"}, {"source": "t_sensors_status_imu", "target": "m_ekf2", "color": "#419ad8", "style": "normal"}, {"source": "t_cpuload", "target": "m_send_event", "color": "#d841a3", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_send_event", "color": "#7e41d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_send_event", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_send_event", "color": "#d8bd41", "style": "normal"}, {"source": "t_battery_status", "target": "m_send_event", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_flight_mode_manager", "color": "#7ed841", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_flight_mode_manager", "color": "#5041d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_flight_mode_manager", "color": "#b2d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_flight_mode_manager", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_flight_mode_manager", "color": "#b941d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_flight_mode_manager", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_flight_mode_manager", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_att_control", "color": "#7ed841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_att_control", "color": "#d84175", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_att_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_fw_att_control", "color": "#5041d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_fw_att_control", "color": "#d89c41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_att_control", "color": "#41ced8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_att_control", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_att_control", "color": "#b941d8", "style": "normal"}, {"source": "t_fixed_wing_runway_control", "target": "m_fw_att_control", "color": "#4159d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_att_control", "color": "#41d84b", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_autotune_attitude_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_autotune_attitude_control", "color": "#41ced8", "style": "normal"}, {"source": "t_longitudinal_control_configuration", "target": "m_fw_lat_lon_control", "color": "#41d8bb", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_lat_lon_control", "color": "#7ed841", "style": "normal"}, {"source": "t_lateral_control_configuration", "target": "m_fw_lat_lon_control", "color": "#77d841", "style": "normal"}, {"source": "t_fixed_wing_lateral_setpoint", "target": "m_fw_lat_lon_control", "color": "#41d893", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_lat_lon_control", "color": "#d84175", "style": "normal"}, {"source": "t_flaps_setpoint", "target": "m_fw_lat_lon_control", "color": "#d84168", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_lat_lon_control", "color": "#4166d8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_lat_lon_control", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_lat_lon_control", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_lat_lon_control", "color": "#b941d8", "style": "normal"}, {"source": "t_fixed_wing_longitudinal_setpoint", "target": "m_fw_lat_lon_control", "color": "#bf41d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_lat_lon_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_fw_mode_manager", "color": "#d87541", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_mode_manager", "color": "#7ed841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_mode_manager", "color": "#41d8ce", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_fw_mode_manager", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fw_mode_manager", "color": "#d84175", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_mode_manager", "color": "#4166d8", "style": "normal"}, {"source": "t_wind", "target": "m_fw_mode_manager", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_mode_manager", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_fw_mode_manager", "color": "#b941d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_fw_mode_manager", "color": "#d84154", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_fw_mode_manager", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_mode_manager", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_fw_rate_control", "color": "#7ed841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_fw_rate_control", "color": "#71d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_fw_rate_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_fw_rate_control", "color": "#4179d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_fw_rate_control", "color": "#4166d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_fw_rate_control", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_fw_rate_control", "color": "#41d84b", "style": "normal"}, {"source": "t_battery_status", "target": "m_fw_rate_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_gimbal", "color": "#d87541", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_gimbal", "color": "#7ed841", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_gimbal", "color": "#d841ca", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_gimbal", "color": "#d84175", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gimbal", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_roi", "target": "m_gimbal", "color": "#418dd8", "style": "normal"}, {"source": "t_gimbal_manager_set_attitude", "target": "m_gimbal", "color": "#ab41d8", "style": "normal"}, {"source": "t_gimbal_manager_set_manual_control", "target": "m_gimbal", "color": "#d841b6", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_gimbal", "color": "#d84154", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_gimbal", "color": "#d86141", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gimbal", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_gyro_calibration", "color": "#41ced8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_gyro_calibration", "color": "#d88941", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_calibration", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_gyro_calibration", "color": "#41a7d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_gyro_fft", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_gyro_fft", "color": "#41d880", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_gyro_fft", "color": "#41d5d8", "style": "normal"}, {"source": "t_sensor_gyro_fifo", "target": "m_gyro_fft", "color": "#d88241", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_land_detector", "color": "#d87541", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_land_detector", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_land_detector", "color": "#41d5d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_land_detector", "color": "#8441d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_land_detector", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_land_detector", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_land_detector", "color": "#b941d8", "style": "normal"}, {"source": "t_takeoff_status", "target": "m_land_detector", "color": "#b2d841", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_land_detector", "color": "#4166d8", "style": "normal"}, {"source": "t_launch_detection_status", "target": "m_land_detector", "color": "#41c8d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_land_detector", "color": "#d84154", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_land_detector", "color": "#41d879", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_land_detector", "color": "#41d880", "style": "normal"}, {"source": "t_irlock_report", "target": "m_landing_target_estimator", "color": "#5641d8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_landing_target_estimator", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_landing_target_estimator", "color": "#b941d8", "style": "normal"}, {"source": "t_vehicle_visual_odometry", "target": "m_local_position_estimator", "color": "#414bd8", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_local_position_estimator", "color": "#7ed841", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_local_position_estimator", "color": "#41d88d", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_local_position_estimator", "color": "#d84175", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_local_position_estimator", "color": "#8441d8", "style": "normal"}, {"source": "t_sensor_combined", "target": "m_local_position_estimator", "color": "#d84196", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_local_position_estimator", "color": "#b941d8", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_local_position_estimator", "color": "#6ad841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_local_position_estimator", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_mocap_odometry", "target": "m_local_position_estimator", "color": "#c641d8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_logger", "color": "#41d8ce", "style": "normal"}, {"source": "t_ulog_stream_ack", "target": "m_logger", "color": "#b241d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_logger", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_logger", "color": "#d8bd41", "style": "normal"}, {"source": "t_battery_status", "target": "m_logger", "color": "#7141d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mag_bias_estimator", "color": "#abd841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mag_bias_estimator", "color": "#41ced8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_manual_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_manual_control", "color": "#ccd841", "style": "normal"}, {"source": "t_action_request", "target": "m_manual_control", "color": "#d8418f", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_manual_control", "color": "#41ced8", "style": "normal"}, {"source": "t_dataman_response", "target": "m_mavlink", "color": "#d84141", "style": "normal"}, {"source": "t_figure_eight_status", "target": "m_mavlink", "color": "#d85b41", "style": "normal"}, {"source": "t_gimbal_device_attitude_status", "target": "m_mavlink", "color": "#d86141", "style": "normal"}, {"source": "t_estimator_status", "target": "m_mavlink", "color": "#d86841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_mavlink", "color": "#d87541", "style": "normal"}, {"source": "t_gps_inject_data", "target": "m_mavlink", "color": "#d87b41", "style": "normal"}, {"source": "t_mission", "target": "m_mavlink", "color": "#d88f41", "style": "normal"}, {"source": "t_orbit_status", "target": "m_mavlink", "color": "#d89641", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mavlink", "color": "#d89c41", "style": "normal"}, {"source": "t_satellite_info", "target": "m_mavlink", "color": "#d8a341", "style": "normal"}, {"source": "t_event", "target": "m_mavlink", "color": "#d8b041", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_mavlink", "color": "#d8bd41", "style": "normal"}, {"source": "t_debug_key_value", "target": "m_mavlink", "color": "#d8d141", "style": "normal"}, {"source": "t_input_rc", "target": "m_mavlink", "color": "#d8d741", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_mavlink", "color": "#ccd841", "style": "normal"}, {"source": "t_gimbal_manager_information", "target": "m_mavlink", "color": "#c6d841", "style": "normal"}, {"source": "t_gimbal_v1_command", "target": "m_mavlink", "color": "#bfd841", "style": "normal"}, {"source": "t_vehicle_odometry", "target": "m_mavlink", "color": "#9ed841", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_mavlink", "color": "#a5d841", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_mavlink", "color": "#abd841", "style": "normal"}, {"source": "t_transponder_report", "target": "m_mavlink", "color": "#91d841", "style": "normal"}, {"source": "t_sensor_gps", "target": "m_mavlink", "color": "#8bd841", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mavlink", "color": "#7ed841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mavlink", "color": "#71d841", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_mavlink", "color": "#6ad841", "style": "normal"}, {"source": "t_camera_capture", "target": "m_mavlink", "color": "#63d841", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_mavlink", "color": "#5dd841", "style": "normal"}, {"source": "t_health_report", "target": "m_mavlink", "color": "#56d841", "style": "normal"}, {"source": "t_wind", "target": "m_mavlink", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_angular_velocity_groundtruth", "target": "m_mavlink", "color": "#41d852", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mavlink", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_mavlink", "color": "#41d845", "style": "normal"}, {"source": "t_geofence_result", "target": "m_mavlink", "color": "#41d85f", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_mavlink", "color": "#41d866", "style": "normal"}, {"source": "t_vehicle_thrust_setpoint", "target": "m_mavlink", "color": "#41d879", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_mavlink", "color": "#41d880", "style": "normal"}, {"source": "t_distance_sensor", "target": "m_mavlink", "color": "#41d88d", "style": "normal"}, {"source": "t_esc_status", "target": "m_mavlink", "color": "#41d8a7", "style": "normal"}, {"source": "t_debug_array", "target": "m_mavlink", "color": "#41d8c1", "style": "normal"}, {"source": "t_tecs_status", "target": "m_mavlink", "color": "#41d8c8", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mavlink", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_mavlink", "color": "#41d5d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mavlink", "color": "#41ced8", "style": "normal"}, {"source": "t_airspeed", "target": "m_mavlink", "color": "#41bbd8", "style": "normal"}, {"source": "t_debug_vect", "target": "m_mavlink", "color": "#41aed8", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_mavlink", "color": "#41a7d8", "style": "normal"}, {"source": "t_home_position", "target": "m_mavlink", "color": "#41a1d8", "style": "normal"}, {"source": "t_gimbal_manager_status", "target": "m_mavlink", "color": "#4193d8", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_mavlink", "color": "#4186d8", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_mavlink", "color": "#4173d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_mavlink", "color": "#4166d8", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_mavlink", "color": "#415fd8", "style": "normal"}, {"source": "t_debug_value", "target": "m_mavlink", "color": "#4341d8", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mavlink", "color": "#5041d8", "style": "normal"}, {"source": "t_battery_status", "target": "m_mavlink", "color": "#7141d8", "style": "normal"}, {"source": "t_ulog_stream", "target": "m_mavlink", "color": "#7741d8", "style": "normal"}, {"source": "t_failsafe_flags", "target": "m_mavlink", "color": "#7e41d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_mavlink", "color": "#8441d8", "style": "normal"}, {"source": "t_rpm", "target": "m_mavlink", "color": "#9141d8", "style": "normal"}, {"source": "t_mount_orientation", "target": "m_mavlink", "color": "#9841d8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_mavlink", "color": "#a541d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mavlink", "color": "#b941d8", "style": "normal"}, {"source": "t_register_ext_component_reply", "target": "m_mavlink", "color": "#d341d8", "style": "normal"}, {"source": "t_mission_result", "target": "m_mavlink", "color": "#d841d7", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_mavlink", "color": "#d841d1", "style": "normal"}, {"source": "t_gimbal_device_information", "target": "m_mavlink", "color": "#d841ca", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_mavlink", "color": "#d841bd", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_mavlink", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_mavlink", "color": "#d841a9", "style": "normal"}, {"source": "t_cpuload", "target": "m_mavlink", "color": "#d841a3", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_mavlink", "color": "#d8419c", "style": "normal"}, {"source": "t_camera_status", "target": "m_mavlink", "color": "#d84189", "style": "normal"}, {"source": "t_rtl_time_estimate", "target": "m_mavlink", "color": "#d8417b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mavlink", "color": "#d84175", "style": "normal"}, {"source": "t_camera_trigger", "target": "m_mavlink", "color": "#d8415b", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_mavlink", "color": "#d84154", "style": "normal"}, {"source": "t_estimator_selector_status", "target": "m_mavlink", "color": "#d84147", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_att_control", "color": "#7ed841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_att_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_mc_att_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_mc_att_control", "color": "#5041d8", "style": "normal"}, {"source": "t_autotune_attitude_control_status", "target": "m_mc_att_control", "color": "#d89c41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_att_control", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_att_control", "color": "#b941d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_att_control", "color": "#41d84b", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_autotune_attitude_control", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_torque_setpoint", "target": "m_mc_autotune_attitude_control", "color": "#6341d8", "style": "normal"}, {"source": "t_actuator_controls_status_0", "target": "m_mc_autotune_attitude_control", "color": "#d8a941", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_pos_control", "color": "#7ed841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_mc_pos_control", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_mc_pos_control", "color": "#b941d8", "style": "normal"}, {"source": "t_vehicle_constraints", "target": "m_mc_pos_control", "color": "#41d873", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_pos_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_mc_rate_control", "color": "#7ed841", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_mc_rate_control", "color": "#71d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_mc_rate_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_control_allocator_status", "target": "m_mc_rate_control", "color": "#4179d8", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_mc_rate_control", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_mc_rate_control", "color": "#41d84b", "style": "normal"}, {"source": "t_battery_status", "target": "m_mc_rate_control", "color": "#7141d8", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_navigator", "color": "#d87541", "style": "normal"}, {"source": "t_transponder_report", "target": "m_navigator", "color": "#91d841", "style": "normal"}, {"source": "t_dataman_response", "target": "m_navigator", "color": "#d84141", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_navigator", "color": "#7ed841", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_navigator", "color": "#5dd841", "style": "normal"}, {"source": "t_mission", "target": "m_navigator", "color": "#d88f41", "style": "normal"}, {"source": "t_position_controller_landing_status", "target": "m_navigator", "color": "#50d841", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_navigator", "color": "#41ced8", "style": "normal"}, {"source": "t_wind", "target": "m_navigator", "color": "#43d841", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_navigator", "color": "#b941d8", "style": "normal"}, {"source": "t_landing_target_pose", "target": "m_navigator", "color": "#6ad841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_navigator", "color": "#d8bd41", "style": "normal"}, {"source": "t_geofence_status", "target": "m_navigator", "color": "#41d8b4", "style": "normal"}, {"source": "t_home_position", "target": "m_navigator", "color": "#41a1d8", "style": "normal"}, {"source": "t_rtl_status", "target": "m_navigator", "color": "#9e41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_payload_deliverer", "color": "#d8bd41", "style": "normal"}, {"source": "t_manual_control_switches", "target": "m_rc_update", "color": "#ccd841", "style": "normal"}, {"source": "t_rc_parameter_map", "target": "m_rc_update", "color": "#416cd8", "style": "normal"}, {"source": "t_input_rc", "target": "m_rc_update", "color": "#d8d741", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_ackermann", "color": "#4152d8", "style": "normal"}, {"source": "t_position_controller_status", "target": "m_rover_ackermann", "color": "#5dd841", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_ackermann", "color": "#b9d841", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_ackermann", "color": "#d84175", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_ackermann", "color": "#d8416e", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_ackermann", "color": "#41d8ce", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_ackermann", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_ackermann", "color": "#d84e41", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_ackermann", "color": "#5d41d8", "style": "normal"}, {"source": "t_actuator_servos", "target": "m_rover_ackermann", "color": "#41d86c", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_ackermann", "color": "#b941d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_ackermann", "color": "#d84154", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_ackermann", "color": "#d8c441", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_ackermann", "color": "#41d84b", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_ackermann", "color": "#d86e41", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_ackermann", "color": "#d3d841", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_differential", "color": "#4152d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_differential", "color": "#b9d841", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_differential", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_differential", "color": "#d84175", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_differential", "color": "#41d8ce", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_differential", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_differential", "color": "#d84e41", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_differential", "color": "#5d41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_differential", "color": "#b941d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_differential", "color": "#d84154", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_differential", "color": "#d8c441", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_differential", "color": "#41d84b", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_differential", "color": "#d86e41", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_differential", "color": "#d3d841", "style": "normal"}, {"source": "t_offboard_control_mode", "target": "m_rover_mecanum", "color": "#4152d8", "style": "normal"}, {"source": "t_rover_velocity_setpoint", "target": "m_rover_mecanum", "color": "#b9d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_mecanum", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_mecanum", "color": "#d84175", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_mecanum", "color": "#d8416e", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_rover_mecanum", "color": "#4180d8", "style": "normal"}, {"source": "t_rover_rate_setpoint", "target": "m_rover_mecanum", "color": "#d84e41", "style": "normal"}, {"source": "t_rover_attitude_setpoint", "target": "m_rover_mecanum", "color": "#5d41d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_mecanum", "color": "#b941d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_mecanum", "color": "#d84154", "style": "normal"}, {"source": "t_rover_position_setpoint", "target": "m_rover_mecanum", "color": "#d8c441", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_mecanum", "color": "#41d84b", "style": "normal"}, {"source": "t_rover_steering_setpoint", "target": "m_rover_mecanum", "color": "#d86e41", "style": "normal"}, {"source": "t_rover_throttle_setpoint", "target": "m_rover_mecanum", "color": "#d3d841", "style": "normal"}, {"source": "t_vehicle_global_position", "target": "m_rover_pos_control", "color": "#d87541", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_rover_pos_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_rover_pos_control", "color": "#d84175", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_rover_pos_control", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_rover_pos_control", "color": "#5041d8", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_rover_pos_control", "color": "#b941d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_rover_pos_control", "color": "#d84154", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_rover_pos_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_imu", "target": "m_sensors", "color": "#d841a9", "style": "normal"}, {"source": "t_differential_pressure", "target": "m_sensors", "color": "#d841d1", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_sensors", "color": "#d88941", "style": "normal"}, {"source": "t_vehicle_imu_status", "target": "m_sensors", "color": "#41d5d8", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_sensors", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_optical_flow", "target": "m_sensors", "color": "#d8ca41", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_sensors", "color": "#abd841", "style": "normal"}, {"source": "t_estimator_sensor_bias", "target": "m_sensors", "color": "#41d866", "style": "normal"}, {"source": "t_sensor_correction", "target": "m_sensors", "color": "#41a7d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_sensors", "color": "#41d84b", "style": "normal"}, {"source": "t_sensor_selection", "target": "m_sensors", "color": "#41d880", "style": "normal"}, {"source": "t_flight_phase_estimation", "target": "m_battery_simulator", "color": "#8b41d8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_battery_simulator", "color": "#d8bd41", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_battery_simulator", "color": "#41ced8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_gz_bridge", "color": "#84d841", "style": "normal"}, {"source": "t_gripper", "target": "m_gz_bridge", "color": "#41d89a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_gz_bridge", "color": "#41d8ce", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_gz_bridge", "color": "#4180d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_gz_bridge", "color": "#8441d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_gz_bridge", "color": "#d84161", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_gz_bridge", "color": "#d8bd41", "style": "normal"}, {"source": "t_gimbal_device_set_attitude", "target": "m_gz_bridge", "color": "#415fd8", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_gz_bridge", "color": "#6a41d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_gz_bridge", "color": "#41c1d8", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_gz_bridge", "color": "#41b4d8", "style": "normal"}, {"source": "t_actuator_test", "target": "m_pwm_out_sim", "color": "#84d841", "style": "normal"}, {"source": "t_gripper", "target": "m_pwm_out_sim", "color": "#41d89a", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_pwm_out_sim", "color": "#41d8ce", "style": "normal"}, {"source": "t_actuator_motors", "target": "m_pwm_out_sim", "color": "#4180d8", "style": "normal"}, {"source": "t_actuator_armed", "target": "m_pwm_out_sim", "color": "#8441d8", "style": "normal"}, {"source": "t_landing_gear", "target": "m_pwm_out_sim", "color": "#d84161", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_pwm_out_sim", "color": "#d8bd41", "style": "normal"}, {"source": "t_landing_gear_wheel", "target": "m_pwm_out_sim", "color": "#6a41d8", "style": "normal"}, {"source": "t_actuator_servos_trim", "target": "m_pwm_out_sim", "color": "#41c1d8", "style": "normal"}, {"source": "t_gimbal_controls", "target": "m_pwm_out_sim", "color": "#41b4d8", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_agp_sim", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#a5d841", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_airspeed_sim", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_sensor_airspeed_sim", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_baro_sim", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_local_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#a5d841", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_gps_sim", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_global_position_groundtruth", "target": "m_sensor_mag_sim", "color": "#d8419c", "style": "normal"}, {"source": "t_vehicle_attitude_groundtruth", "target": "m_sensor_mag_sim", "color": "#4173d8", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_mavlink", "color": "#a541d8", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_mavlink", "color": "#d841bd", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_simulator_mavlink", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_simulator_mavlink", "color": "#d8bd41", "style": "normal"}, {"source": "t_battery_status", "target": "m_simulator_mavlink", "color": "#7141d8", "style": "normal"}, {"source": "t_actuator_outputs_sim", "target": "m_simulator_sih", "color": "#d841bd", "style": "normal"}, {"source": "t_actuator_outputs", "target": "m_simulator_sih", "color": "#a541d8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_temperature_compensation", "color": "#d88941", "style": "normal"}, {"source": "t_sensor_gyro", "target": "m_temperature_compensation", "color": "#4941d8", "style": "normal"}, {"source": "t_sensor_mag", "target": "m_temperature_compensation", "color": "#abd841", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_temperature_compensation", "color": "#d8bd41", "style": "normal"}, {"source": "t_sensor_baro", "target": "m_temperature_compensation", "color": "#d841b0", "style": "normal"}, {"source": "t_vehicle_rates_setpoint", "target": "m_uuv_att_control", "color": "#71d841", "style": "normal"}, {"source": "t_manual_control_setpoint", "target": "m_uuv_att_control", "color": "#41d8ce", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_att_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_attitude_setpoint", "target": "m_uuv_att_control", "color": "#5041d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_att_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_uuv_pos_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_uuv_pos_control", "color": "#41d84b", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_uuv_pos_control", "color": "#b941d8", "style": "normal"}, {"source": "t_trajectory_setpoint", "target": "m_uuv_pos_control", "color": "#d8416e", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_uxrce_dds_client", "color": "#41d845", "style": "normal"}, {"source": "t_vehicle_local_position", "target": "m_vtol_att_control", "color": "#b941d8", "style": "normal"}, {"source": "t_vehicle_control_mode", "target": "m_vtol_att_control", "color": "#41d84b", "style": "normal"}, {"source": "t_home_position", "target": "m_vtol_att_control", "color": "#41a1d8", "style": "normal"}, {"source": "t_vehicle_local_position_setpoint", "target": "m_vtol_att_control", "color": "#4186d8", "style": "normal"}, {"source": "t_airspeed_validated", "target": "m_vtol_att_control", "color": "#4166d8", "style": "normal"}, {"source": "t_position_setpoint_triplet", "target": "m_vtol_att_control", "color": "#d84154", "style": "normal"}, {"source": "t_vehicle_command", "target": "m_vtol_att_control", "color": "#d8bd41", "style": "normal"}, {"source": "t_mc_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#41d886", "style": "normal"}, {"source": "t_action_request", "target": "m_vtol_att_control", "color": "#d8418f", "style": "normal"}, {"source": "t_fw_virtual_attitude_setpoint", "target": "m_vtol_att_control", "color": "#d84182", "style": "normal"}, {"source": "t_vehicle_land_detected", "target": "m_vtol_att_control", "color": "#7ed841", "style": "normal"}, {"source": "t_tecs_status", "target": "m_vtol_att_control", "color": "#41d8c8", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_vtol_att_control", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_vtol_att_control", "color": "#41ced8", "style": "normal"}, {"source": "t_vehicle_command_ack", "target": "m_failure", "color": "#41d845", "style": "normal"}, {"source": "t_dataman_response", "target": "m_tests", "color": "#d84141", "style": "normal"}, {"source": "t_input_rc", "target": "m_tests", "color": "#d8d741", "style": "normal"}, {"source": "t_vehicle_attitude", "target": "m_fake_magnetometer", "color": "#d84175", "style": "normal"}, {"source": "t_vehicle_status", "target": "m_work_item_example", "color": "#41ced8", "style": "normal"}, {"source": "t_sensor_accel", "target": "m_work_item_example", "color": "#d88941", "style": "normal"}]} \ No newline at end of file