-
Notifications
You must be signed in to change notification settings - Fork 8.2k
drivers: input: sbus remote controller support #72628
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
Merged
dleach02
merged 1 commit into
zephyrproject-rtos:main
from
nxp-upstream:pr-sbus-input-driver
Jun 6, 2024
Merged
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
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
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,54 @@ | ||
| # Copyright (c) 2024 NXP Semiconductors | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| config INPUT_SBUS | ||
| bool "SBUS driver" | ||
| default y | ||
| depends on DT_HAS_FUTABA_SBUS_ENABLED | ||
| depends on UART_INTERRUPT_DRIVEN | ||
| select UART_USE_RUNTIME_CONFIGURE | ||
| help | ||
| Enable driver for SBUS Remote controller. | ||
|
|
||
| if INPUT_SBUS | ||
|
|
||
| config INPUT_SBUS_THREAD_STACK_SIZE | ||
| int "Stack size for the sbus thread" | ||
| default 1024 | ||
| help | ||
| Size of the stack used for the sbus thread. | ||
|
|
||
| config INPUT_SBUS_THREAD_PRIORITY | ||
| int "Priority for the sbus thread" | ||
| default 0 | ||
| help | ||
| Priority level of the sbus thread. | ||
|
|
||
| config INPUT_SBUS_REPORT_FILTER | ||
| int "Minimal change in signal to report" | ||
| default 1 | ||
| help | ||
| SBUS tends to be a bit noisy you can increase the threshold to | ||
| to lower the amounts of input events. Set to 0 for no filtering | ||
|
|
||
| config INPUT_SBUS_SEND_SYNC | ||
| bool "Send Sync to input subsys on each SBUS frame" | ||
| default y | ||
| help | ||
| Sends sync message to input subsys with sync bit. | ||
|
|
||
| config INPUT_SBUS_CHANNEL_VALUE_ONE | ||
| int "Threshold value > for INPUT_EV_KEY value 1" | ||
| default 1800 | ||
| help | ||
| SBUS sends analogue values for digital switches. This config value | ||
| sets the threshold to interperted the analogue value as an logic 1 | ||
|
|
||
| config INPUT_SBUS_CHANNEL_VALUE_ZERO | ||
| int "Threshold value < for INPUT_EV_KEY value 0" | ||
| default 1200 | ||
| help | ||
| SBUS sends analogue values for digital switches. This config value | ||
| sets the threshold to interperted the analogue value as an logic 0 | ||
|
|
||
| endif # INPUT_SBUS |
Oops, something went wrong.
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.