1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
//! Protocol trait hierarchy.
//!
//! A `Protocol` is a zero-sized type that ties together the four axes of
//! variation across WSJT-family digital modes:
//!
//! | Axis | Trait | Examples |
//! |--------------------|--------------------|-----------------------------------|
//! | Tones / baseband | `ModulationParams` | 8-FSK @ 6.25 Hz (FT8) vs 4-FSK (FT4) |
//! | Frame layout | `FrameLayout` | Costas pattern, sync positions |
//! | FEC | `FecCodec` | LDPC(174,91) / Reed–Solomon / Fano |
//! | Message payload | `MessageCodec` | WSJT 77-bit / JT 72-bit / WSPR 50 |
//!
//! Splitting the traits lets implementations share code: FT4 reuses FT8's
//! `Ldpc174_91` and `Wsjt77Message` and differs only in `ModulationParams` +
//! `FrameLayout`, so SIMD optimisations to the shared LDPC decoder
//! automatically benefit every LDPC-based protocol.
/// The PCM sample rate every protocol in this crate is defined against,
/// in Hz.
///
/// Not a tunable: WSJT-X's own modes are specified at 12 kHz, and every
/// `ModulationParams` constant here derives from it — `SYMBOL_DT =
/// NSPS / SAMPLE_RATE_HZ`, `TONE_SPACING_HZ = SAMPLE_RATE_HZ / NSPS`.
/// Faithful porting is the crate's premise, so this is a domain
/// constant rather than a parameter, and nothing is set up to vary it.
///
/// It exists as a name because it was previously spelled three times
/// under two names in three modules (issue #321) — `uvpacket::tx`,
/// `ft8::decode_block::types` and `engine::dsp::msk::FS_HZ`, the last
/// of which is `pub` and so advertised the crate's sample rate under a
/// name suggesting it belonged to MSK144.
///
/// **The ~100 remaining bare `12_000.0` literals are deliberately left
/// alone.** Each reads unambiguously in its own context, and replacing
/// them was measured against the churn and declined — see #321 for that
/// reasoning, and #307/#309 for the distinction (definitional rate vs
/// analysis-grid rate) that a future refactor would actually need to
/// draw, which naming this constant does *not* address.
pub const SAMPLE_RATE_HZ: f32 = 12_000.0;
use String;
use Vec;
/// Runtime protocol tag — used at FFI boundaries where generics cannot cross
/// the C ABI. Order is stable; append new variants at the end.
/// Baseband modulation parameters (tones, symbol rate, Gray mapping, Gaussian
/// shaping and the tunable DSP ratios the pipeline reads per protocol).
///
/// All constants are evaluated at compile time; the trait carries no data so
/// implementors are typically zero-sized types.
/// Window function applied to each NSPS-sample chunk before the
/// coarse-sync FFT. See [`ModulationParams::SPECTRUM_WINDOW`].
/// One Costas / pilot block: a contiguous run of tones starting at a specific
/// symbol index within the frame.
///
/// FT8 has three identical blocks (positions 0/36/72, same Costas-7 pattern);
/// FT4 has four *different* blocks (positions 0/33/66/99, each a permutation
/// of `[0,1,2,3]`). The trait is shaped to accommodate both.
/// How sync information is carried in the channel symbol stream.
///
/// * `Block` — dedicated contiguous sync blocks (Costas arrays) occupy
/// specific symbol positions, with data symbols filling the rest. Used by
/// FT8, FT4, FST4.
/// * `Interleaved` — every channel symbol carries one sync bit (fixed
/// position within the tone index) AND payload bits. The sync bits
/// concatenated across the frame form a known pseudorandom vector.
/// Used by WSPR: `tone = 2·data_bit + sync_bit`, so LSB of each
/// 4-FSK symbol reproduces the 162-bit `npr3` sync vector.
/// Frame structure: data / sync symbol counts, the ordered list of sync
/// blocks, and the TX-side nominal start offset.
// ──────────────────────────────────────────────────────────────────────────
// FEC
// ──────────────────────────────────────────────────────────────────────────
/// LDPC belief-propagation check-node update kernel.
///
/// `SumProduct` is the WSJT-X-equivalent log-domain sum-product update
/// (the `2·atanh(∏ tanh(L/2))` formula). `NormalizedMinSum` and
/// `OffsetMinSum` are min-sum approximations that skip the
/// transcendental functions entirely — significantly faster on
/// FPU-poor embedded targets at a small (typically <0.2 dB on Q65 /
/// FT8 / FT4 thresholds with α=0.75 or β=0.5) SNR cost.
///
/// Both min-sum variants use the standard min1/min2 trick (track the
/// two smallest |L| at each check node) plus XOR-accumulated signs,
/// so the per-iteration cost is roughly O(check_degree) instead of
/// the sum-product's O(check_degree²) for the per-edge `tanh`-cache
/// lookups.
///
/// Use `SumProduct` on host targets (default), `NormalizedMinSum` or
/// `OffsetMinSum` on `no_std` / FPU-limited builds.
/// Options controlling FEC decoding depth / fall-backs.
///
/// This is deliberately a plain data struct rather than a trait — it describes
/// *how* to decode, not *what* code to use. Codecs ignore fields that don't
/// apply (e.g. convolutional decoders ignore `osd_depth`).
/// Seals [`FecCodec`] against downstream implementors (issue #198).
/// `pub(crate)` — visible anywhere in this crate (every implementor
/// lives in a different module) but unnameable outside it.
pub
/// Result of a successful FEC decode.
/// Forward-error-correction codec: maps `K` information bits ↔ `N` codeword
/// bits.
///
/// Implementors MUST be `Default`-constructible so generic pipeline code can
/// obtain an instance via `P::Fec::default()` without plumbing state.
/// Stateless codecs (matrices in `const` / `static`) are the common case.
///
/// # Symbol granularity
///
/// The trait surface speaks in **bits**: `&[u8]` info / codeword, `&[f32]`
/// bit-LLRs, `K` and `N` counted in bits. Non-binary codes (Q65's QRA over
/// GF(2⁶), JT65's RS over GF(2⁶)) implement this surface by packing /
/// unpacking bits ↔ symbols inside their own `encode`, and by using a
/// private symbol-level decode path that lives outside `decode_soft`. In
/// particular [`crate::q65::Q65Fec::decode_soft`] returns `None` by design —
/// the real Q65 decode runs over GF(64) probability vectors via
/// [`crate::fec::qra::Q65Codec`] and is invoked from
/// [`crate::q65::DecodeRequest`]/[`crate::q65::SniperRequest`], not through
/// this trait.
///
/// Counting `K` / `N` in bits keeps the cross-protocol invariant
/// `FecCodec::N ≤ N_DATA × BITS_PER_SYMBOL` (pinned in
/// `tests/protocol_invariants.rs::assert_codec_consistency`) meaningful for
/// both binary (LDPC, conv) and non-binary (RS, QRA) codes.
///
/// Sealed (issue #198, pre-0.8.0 public-API review): `decode_soft` is
/// f32-hardcoded today, which blocks fixed-point BP from ever running
/// through the generic pipeline for FT4/FST4/MSK144 (FT8 only gets it
/// via its own separate bespoke engine, which bypasses this trait
/// entirely). Generic-izing the signature (`decode_soft<T: LlrScalar>`)
/// is future work with its own numerical-verification cost; sealing
/// now means that redesign can land as a signature change on the
/// existing implementors (`Ldpc174_91`, `Ldpc240_101`, `Ldpc128_90`,
/// `ConvFano`, `ConvFano232`, `Rs63_12`, `Q65Fec`) without being a
/// breaking change for any
/// downstream implementor, since none can exist — `sealed::Sealed` is
/// private to this crate.
/// `Fec` codecs with a pooled-scratch `decode_soft` sibling (perf
/// review: `engine::pipeline::process_candidate_basic_impl`'s LLR/OSD
/// staircase calls `decode_soft` up to 15× per FST4 candidate, 12× for
/// FT4, each allocating ~9 fresh `Vec`s internally with no pooling —
/// the same shape of problem `fec::ldpc::bp::BpScratch`/issue #199/#201
/// already fixed for FT8's own `NormalizedMinSum` kernel, just never
/// ported to the generic pipeline or to the `SumProduct` kernel
/// [`FecOpts::default`] actually selects). Not on the sealed
/// [`FecCodec`] itself — that would force a `Scratch` type onto
/// `Q65Fec`/`ConvFano`/`Ldpc128_90` too, none of which want LDPC BP
/// scratch. Implemented for `Ldpc174_91`/`Ldpc240_101`
/// (`crate::fec::ldpc`/`crate::fec::ldpc240_101`) only — the two `Fec`
/// types `Ft4` and every FST4 sub-mode actually use. Lives next to
/// [`FecCodec`] (not in `engine::pipeline`, where it's consumed) so
/// its implementors — `fec::ldpc`/`fec::ldpc240_101` — don't need a
/// new dependency on `engine::pipeline`, only their existing one on
/// this module.
///
/// `pub` only under the `internal-testing` feature (issue #203) —
/// mirrors `engine::pipeline::GenericPipelineProtocol`'s own gating,
/// since that trait's `where Self::Fec: BpPooledFec` bound needs
/// `BpPooledFec` to be at least as visible as whatever visibility
/// `GenericPipelineProtocol`-bounded functions have on a given feature
/// set (Rust's `private_bounds` lint) — not because any external
/// caller ever names `BpPooledFec` itself; the bound is satisfied
/// automatically by `P: GenericPipelineProtocol` alone.
///
/// `#[allow(dead_code)]`: unlike `GenericPipelineProtocol` (an empty
/// marker trait, nothing for the lint to flag), this trait has a real
/// method (`decode_soft_pooled`). Under a feature set with no protocol
/// that reaches `GenericPipelineProtocol`'s generic pipeline (e.g.
/// `--no-default-features`, `--features wspr`) nothing ever calls it,
/// even though `impl BpPooledFec for Ldpc174_91`/`Ldpc240_101` are
/// unconditionally compiled — caught by CI's `-D warnings` build
/// matrix, not by the `full`/`full,internal-testing` combo this was
/// developed against.
// see the `internal-testing` branch's doc comment above
pub
// ──────────────────────────────────────────────────────────────────────────
// Message codec
// ──────────────────────────────────────────────────────────────────────────
/// Human-facing message payload codec (callsigns, grids, reports, free text).
///
/// Operates on the FEC-decoded information bits (`PAYLOAD_BITS` wide, NOT
/// including any CRC protecting them — callers handle the CRC layer).
///
/// Unlike `FecCodec`, this trait is an acceptable place for `dyn` when the
/// caller juggles heterogeneous protocols at runtime (FFI, CLI dump tools):
/// message unpacking is a cold path relative to DSP/FEC inner loops.
/// Generic input to `MessageCodec::pack` — protocol-specific codecs accept
/// the subset of fields they understand and return `None` for unsupported
/// combinations.
/// Side information passed to `MessageCodec::unpack`.
///
/// `callsign_hash_table` is an opaque pointer the protocol crate
/// downcasts to its own table type — generic code does not need to know the
/// shape. This keeps `mfsk-msg` optional at the `mfsk-core` level.
// ──────────────────────────────────────────────────────────────────────────
// Protocol facade
// ──────────────────────────────────────────────────────────────────────────
/// The full protocol description: ties `ModulationParams`, `FrameLayout`, a
/// FEC codec and a message codec together under one trait for ergonomic
/// `<P: Protocol>` bounds.