feat: Add WSPR telemetry decoding and fix module paths

Co-authored-by: aider (gemini/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
2026-04-01 12:32:21 -06:00
parent 96afedb577
commit 7b15a0eb9c
2 changed files with 38 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ See the /faq/tos page for details.
(If this generated header is stamped on a file which is a 3rd party file or under a different license or copyright, then ignore this copyright statement and use that file's terms.)
*/
import * as utl from '/js/Utl.js';
import * as utl from './Utl.js';
import { Base } from './Base.js';
import { CandidateFilterByBadTelemetry } from './CandidateFilterByBadTelemetry.js';
@@ -19,9 +19,9 @@ import { CodecHeartbeat } from './CodecHeartbeat.js';
import { CodecExpandedBasicTelemetry } from './CodecExpandedBasicTelemetry.js';
import { CodecHighResLocation } from './CodecHighResLocation.js';
import { QuerierWsprLive } from './QuerierWsprLive.js';
import { WSPR } from '/js/WSPR.js';
import { WSPR } from './WSPR.js';
import { WsprCodecMaker } from '/pro/codec/WsprCodec.js';
import { WSPREncoded } from '/js/WSPREncoded.js';
import { WSPREncoded } from './WSPREncoded.js';
import { WsprMessageCandidate, NonRejectedOnlyFilter } from './WsprMessageCandidate.js';
import { WsprSearchResultDataTableBuilder } from './WsprSearchResultDataTableBuilder.js';