-
Notifications
You must be signed in to change notification settings - Fork 8.2k
ZIO: Beginnings of a Sampled Input/Output API #14008
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
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -89,4 +89,7 @@ source "drivers/neural_net/Kconfig" | |
|
|
||
| source "drivers/hwinfo/Kconfig" | ||
|
|
||
| source "drivers/zio/Kconfig" | ||
|
|
||
|
|
||
| endmenu | ||
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,3 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| add_subdirectory_ifdef(CONFIG_SYNTH synth) |
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,30 @@ | ||
| # Kconfig - zio configuration options | ||
|
|
||
| # | ||
| # Copyright (c) 2019 Thomas Burdick <[email protected]> | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # | ||
|
|
||
| menuconfig ZIO | ||
| bool "ZIO Drivers" | ||
| help | ||
| Include zio drivers in system config | ||
|
|
||
| if ZIO | ||
|
|
||
| module = ZIO | ||
| module-str = zio | ||
| source "subsys/logging/Kconfig.template.log_config" | ||
|
|
||
| config ZIO_INIT_PRIORITY | ||
| int "Zio init priority" | ||
| default 90 | ||
| help | ||
| Zio initialization priority. | ||
|
|
||
| comment "Device Drivers" | ||
|
|
||
| source "drivers/zio/synth/Kconfig" | ||
|
|
||
| endif # ZIO |
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,5 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| zephyr_library() | ||
|
|
||
| zephyr_library_sources_ifdef(CONFIG_SYNTH synth.c) |
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,56 @@ | ||
|
|
||
| # Copyright (c) 2019 Thomas Burdick <[email protected]> | ||
| # | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # | ||
|
|
||
| menuconfig SYNTH | ||
| bool "Synthesized Signal Generator" | ||
| help | ||
| Enable zio driver for signal generator. | ||
|
|
||
| if SYNTH | ||
|
|
||
| config SYNTH_FIFO_SIZE | ||
| int "FIFO power of 2 size, pow(2,SYNTH_FIFO_SIZE), defaults to pow(2,9)=512" | ||
| default 9 | ||
| depends on SYNTH | ||
|
Member
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. You can remove |
||
| help | ||
| The size of the internal FIFO for synthesized samples | ||
|
|
||
| config SYNTH_SAMPLE_RATE | ||
| int "Samples to generate per second, defaults to 44.100kHz (CD sample rate)" | ||
| default 44100 | ||
| depends on SYNTH | ||
| help | ||
| Number of samples to generate per second. | ||
|
|
||
| config SYNTH_0_FREQ | ||
| int "Frequency of first channel" | ||
| default 440 | ||
| depends on SYNTH | ||
| help | ||
| The signal frequency in hertz of the zeroth channel | ||
|
|
||
| config SYNTH_0_PHASE | ||
| int "Phase of first channel in degrees" | ||
| default 0 | ||
| depends on SYNTH | ||
| help | ||
| The signal phase in degress of the zeroth channel | ||
|
|
||
| config SYNTH_1_FREQ | ||
| int "Frequency of second channel" | ||
| default 880 | ||
| depends on SYNTH | ||
| help | ||
| The signal frequency in hertz of the first channel | ||
|
|
||
| config SYNTH_1_PHASE | ||
| int "Phase of second channel in degrees" | ||
| default 45 | ||
| depends on SYNTH | ||
| help | ||
| The signal phase in degrees of the first channel | ||
|
|
||
| endif # SYNTH | ||
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.
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.
Please consider adding "range" entry to this option and the ones below.
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.
What would the range entry be for out of curiousity?
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.
I think that there is no point to specify 432 degrees of phase. Also, is there any limitation in min/max frequency or FIFO size?
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.
Ah I see what your saying now, yes I'll add some sensible ranges