Decode all remaining FT8 contest/special message types#354
Open
patrickrb wants to merge 2 commits into
Open
Conversation
…re toggling on The class/transmitters/section inputs were gated behind `if (fieldDayEnabled)`, but the toggle requires a valid section — making it impossible to fill in the fields. Show them unconditionally so users can configure first, then enable. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Implement DXpedition (0.1), EU VHF (0.2), Contesting (0.6), ARRL RTTY Roundup (i3=3), and WWROF contest (i3=5) decoding in the C decoder and JNI layer. These message types were previously silently dropped (isValid=false) or mangled into free-text. C layer (message.c/h, unpack.c/h): - Add n3=6 to ftx_message_get_type() for Contesting - Implement ftx_message_decode_dxped(), decode_rtty(), decode_wwrof() - Add inline decode+format for EU VHF and Contesting in ftx_message_decode() - Add corresponding unpack functions in unpack.c and wire into unpack77_fields() - Add RTTY_STATES[64] lookup table for state/province codes - Add hash10 callback to unpack_hash_interface_t for DXpedition fox hash JNI layer (ft8_decode_jni.cpp): - Add dedicated handlers for DXpedition, RTTY, WWROF that populate structured Java fields (callsigns, hashes, report, rtty_tu, r_flag, rtty_state, maidenGrid, dx_call_to2) with correct i3/n3 preserved - EU VHF and Contesting fall through to text-based fallback Java (Ft8Message.java): - Fix i3=5 formatter from incorrect "EU VHF" to WWROF contest format - Fix field comments for r_flag, rtty_tu, eu_serial Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.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.
Summary
isValid=false) or mangled into free-text with i3/n3 overwritten to 0/0Test plan
🤖 Generated with Claude Code