-
Notifications
You must be signed in to change notification settings - Fork 261
docs: clarify SET_MESSAGE_INTERVAL stream rate config per serial port #694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ARYA-mgc
wants to merge
1
commit into
mavlink:master
Choose a base branch
from
ARYA-mgc:docs/set-message-interval-stream-rate-clarification
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| # Stream Rates | ||
|
|
||
| This section provides guidance on configuring MAVLink stream rates using the `MAV_CMD_SET_MESSAGE_INTERVAL` command. | ||
|
|
||
| ## Configuring Stream Rates on a Specific Port | ||
|
|
||
| To avoid buffer overruns on high-baud serial links (e.g. 921600 baud TELEM2), you should explicitly configure only the streams required for your use case using `MAV_CMD_SET_MESSAGE_INTERVAL`. | ||
|
|
||
| To silence a stream, set `param2` (interval in microseconds) to `-1`. To restore the default rate, set the interval to `0`. | ||
| Supported on PX4 v1.11+ and ArduPilot v4.0+. Behavior on older versions is undefined. | ||
|
|
||
| ### Example Configuration | ||
|
|
||
| Disable all raw sensor streams on TELEM2, and keep only `RAW_IMU` at 200 Hz: | ||
|
|
||
| | Message | Interval (µs) | Notes | | ||
| |---|---|---| | ||
| | `RAW_IMU` (id: 27) | 5000 | 200 Hz for EKF input | | ||
| | `SCALED_IMU2` (id: 116) | -1 | Disabled | | ||
| | `HIGHRES_IMU` (id: 105) | -1 | Disabled | | ||
|
|
||
| ## Command-like Messages | ||
|
|
||
| Messages that are injected into the flight controller from a companion computer (such as `VISION_POSITION_ESTIMATE`) are conceptually different from the vehicle telemetry streams configured via `MAV_CMD_SET_MESSAGE_INTERVAL`. | ||
| For instance, you might send `VISION_POSITION_ESTIMATE` at 50-100Hz. | ||
|
|
||
| > **Note:** When injecting high-rate external estimates alongside pulling heavy telemetry (like `RAW_IMU`), you can use SET_MESSAGE_INTERVAL for QoS — reducing or increasing the rate of telemetry streams as needed for your setup. On ArduPilot, these correspond to `SR2_*` parameters. On PX4, equivalent rates are controlled via `MAV_*_RATE` parameters. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.