-
Notifications
You must be signed in to change notification settings - Fork 101
Align MTORR concentrator constants with Silicon Labs SDK defaults #718
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
base: dev
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,10 +35,10 @@ | |
|
|
||
| EZSP_LATEST = v18.EZSPv18.VERSION | ||
| LOGGER = logging.getLogger(__name__) | ||
| MTOR_MIN_INTERVAL = 60 | ||
| MTOR_MAX_INTERVAL = 3600 | ||
| MTOR_ROUTE_ERROR_THRESHOLD = 8 | ||
| MTOR_DELIVERY_FAIL_THRESHOLD = 8 | ||
| MTOR_MIN_INTERVAL = 10 | ||
| MTOR_MAX_INTERVAL = 60 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is the biggest behavioral shift in the PR: 60x more frequent worst-case MTORR broadcasts than before (3600s -> 60s). The new value matches the SDK default exactly ( |
||
| MTOR_ROUTE_ERROR_THRESHOLD = 3 | ||
| MTOR_DELIVERY_FAIL_THRESHOLD = 1 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Aggressive drop from 8 to 1 -- a single delivery failure now triggers MTORR re-broadcast. This is the SiLabs default ( |
||
|
|
||
| UART_PROBE_TIMEOUT = 3 | ||
| NETWORK_PROBE_TIMEOUT = 7 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Matches the SiLabs EmberZNet concentrator plugin default (
minTimeBetweenBroadcastsSeconds.default=10, valid range5..60). Note the PR body lists the range as1..60-- it's actually5..60perplugin.properties. Doesn't change the value, just the range column in the description.