Vox implementation#44
Open
Brantlab wants to merge 3 commits into
Open
Conversation
Owner
|
You'll have to fix the rc2-core merge conflicts, and I would like to see some better commenting of the changes/additions to explain their functionality. But I definitely would love to get this added in, thanks for the work! |
Implement audio-level based VOX radio control with RX/TX gate detection, startup/reconnect suppression, learned noise-floor calibration, and gated RX forwarding. Wire VOX mode into daemon startup, local audio callbacks, and example configuration.
Route WebRTC TX audio through the VOX radio before sending it to the local TX device. Track explicit VOX transmit requests so alert tones can key and play correctly while preventing audio from other selected radios from opening the VOX radio.
01feaac to
a96637d
Compare
Author
|
I rebased the VOX branch onto current I also added more section-level comments around the VOX changes, especially the audio callback wiring, raw RX monitoring path, startup/warmup calibration, RX/TX gate behavior, hang timer behavior, and encoded RX forwarding. Validation:
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR implements the daemon VOX control mode and makes it usable for audio-only radio setups such as an FT-991A running DATA VOX through a USB audio interface.
VOX can now drive radio RX/TX state from audio levels, forward receive audio only when active, and pass transmit audio to the configured TX audio device only when that specific radio has been keyed.
What Changed
VoxRadioimplementation forcontrolMode: 0rc2-coresubmodule for reliable initial WebRTC audio negotiationWhy
This enables radios that can self-key from audio, such as an FT-991A in DATA VOX mode, to work without CAT/PTT control.