zebra-report: send chat data at decoder baud (fix messages not crossing)

This commit is contained in:
russell@unturf.com 2026-05-28 10:41:46 -04:00
parent c25cddfc40
commit a502b98fb2
No known key found for this signature in database

View file

@ -1597,7 +1597,9 @@ async function sendCurrentMsg() {
if (!msg) return;
if (!carrierOn) { logLine('err', 'start carrier first'); return; }
const mode = currentMode();
const baud = negotiatedBaud || myMaxBaud || ZEBRA_BAUD_DEFAULT;
/* must match the inbound decoder, which stays at ZEBRA_BAUD_HANDSHAKE for the
* life of the link — data sent at any other baud won't decode on the far side. */
const baud = ZEBRA_BAUD_HANDSHAKE;
try {
if (mode === 'passphrase') {
if (!groupKey) { logLine('err', 'no room key'); return; }