-
Notifications
You must be signed in to change notification settings - Fork 50
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
Enable capture of RX features from RADE decoder #776
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
1fa572e
Initial implementation of RX feature capture.
tmiw 169a673
Allow path to feature file to be specified at the command line.
tmiw 747ce63
Fix compilation error after upgrading MacPorts.
tmiw d3cd11a
Add command line option for TX feature capture.
tmiw 60bb5e1
Add -txfile command line argument to feed in WAV file through TX pipe…
tmiw 2c486ee
Adjust scaling to match PR example.
tmiw 6040683
Opt for improved resampling audio quality.
tmiw ce8c1ef
We don't actually need to add additional attenuation anymore.
tmiw 4aba48f
Switch over to soxr for further experimentation.
tmiw 560ec7c
Forgot change to have Windows build work.
tmiw 8d5648a
Update Linux build instructions.
tmiw b5f436e
Fix additional compiler error.
tmiw 16bfed4
Update paCallbackData.h
tmiw 22c2586
Remove missed code that's no longer needed.
tmiw c245394
Update main.cpp
tmiw 4970530
Try to reduce latency.
tmiw dea68ad
Another experiment to decrease latency.
tmiw 0d9fce6
Go back to default settings.
tmiw 5921369
Fix failing ctests.
tmiw a13103a
Fix Windows packaging failures.
tmiw 22a49fe
Disable ctests for soxr.
tmiw dc37633
Enable SIMD for aarch64.
tmiw 4c20eba
Smooth out gaps in audio caused by how soxr works.
tmiw 04504b7
Fix build errors.
tmiw a390463
Ensure we're flushing out our output FIFO if we stop receiving input.
tmiw 7b2e79d
ctests should now be fixed.
tmiw f1a66f0
Revert all samplerate changes. These will go in another PR.
tmiw 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 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 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 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 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 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 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 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 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
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.
The level of the RADE signal should be set at the float to int conversion stage (correctly done above ☝️), not tweaked later in the Tx signal processing. This code should be rm-ed, not just if-deffed out.
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.
Removed in 2c3f6a2.