[feat](trx-frontend-http): add dedicated WSPR plugin tab

Expose a WSPR subtab in the Plugins view with its own controls and
message list, wire a dedicated wspr.js asset endpoint, and route WSPR
decode events to the new panel.

This makes WSPR visible in the HTTP frontend instead of reusing the
FT8 panel for WSPR messages.

Co-authored-by: Codex <codex@openai.com>
Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
This commit is contained in:
2026-02-12 23:18:36 +01:00
parent 6d2d647511
commit 7b75049f4f
6 changed files with 104 additions and 12 deletions
@@ -149,15 +149,3 @@ window.onServerFt8 = function(msg) {
message: msg.message,
});
};
// Reuse FT8 table rendering for WSPR until a dedicated WSPR panel is added.
window.onServerWspr = function(msg) {
ft8Status.textContent = "Receiving";
addFt8Message({
ts_ms: msg.ts_ms,
snr_db: msg.snr_db,
dt_s: msg.dt_s,
freq_hz: msg.freq_hz,
message: `[WSPR] ${msg.message}`,
});
};