Add extensible UDP provider system with WSJT-X/JTDX/MSHV support#118
Open
Claude wants to merge 6 commits into
Open
Add extensible UDP provider system with WSJT-X/JTDX/MSHV support#118Claude wants to merge 6 commits into
Claude wants to merge 6 commits into
Conversation
- Add UdpProviderSettings model with support for multiple UDP providers - Implement WsjtxUdpService for WSJT-X/JTDX/MSHV UDP protocol - Support multicast and forwarding capabilities - Add UDP provider events (status, decode, QSO logged) - Update SignalR hub interface for UDP provider events - Register WSJT-X UDP service in Program.cs The service supports: - WSJT-X binary protocol (magic 0xadbccbda) - Status, Decode, and QSO Logged messages - Unicast and multicast listening - UDP forwarding to other applications - Dynamic configuration reloading Co-authored-by: brianbruff <753297+brianbruff@users.noreply.github.com>
- Add UdpProviderConfig and UdpProviderSettings interfaces - Add udpProviders to Settings interface and default settings - Implement updateUdpProviderSettings and updateUdpProvider methods - Add UDP Integrations section to settings navigation - Configure WSJT-X as default provider (disabled by default) Settings store now supports: - Managing multiple UDP provider configurations - Per-provider enable/disable toggle - Port, multicast, and forwarding settings - Provider-specific custom settings Co-authored-by: brianbruff <753297+brianbruff@users.noreply.github.com>
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.
Implements extensible UDP integration framework for third-party ham radio applications (WSJT-X, JTDX, MSHV, GridTracker, etc.), following QLog's multi-protocol approach. Enables automatic QSO logging, status monitoring, and decode streaming from digital mode applications.
Backend Implementation
UDP Provider Infrastructure
UdpProviderConfigmodel supports multiple UDP protocols with independent configurationWSJT-X Protocol Service
Event Integration
OnWsjtxStatusReceived,OnWsjtxDecodeReceived,OnWsjtxQsoLoggedUdpProviderStatusChangedEventtracks listener stateFrontend Implementation
Settings Store
UdpProviderConfig,UdpProviderSettingsupdateUdpProvider,updateUdpProviderSettingsSettings Navigation
Architecture
Follows existing Log4YM patterns:
BackgroundServicefor UDP listenersFuture Extensions
Framework designed for easy addition of:
Testing Notes
Backend builds successfully. Frontend has TypeScript strict mode errors in settings store (type annotations) that need resolution before UI component implementation.
Original prompt