From 8003a3c3955bed68519a34276589154d770d160d Mon Sep 17 00:00:00 2001 From: DJ2LS <75909252+DJ2LS@users.noreply.github.com> Date: Sun, 12 Feb 2023 18:28:10 +0100 Subject: [PATCH] introduced transmit is writing --- gui/sock.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gui/sock.js b/gui/sock.js index 14881b76..19d7243a 100644 --- a/gui/sock.js +++ b/gui/sock.js @@ -689,6 +689,15 @@ exports.sendFEC = function (mode, payload) { writeTncCommand(command); }; +// SEND FEC IS WRITING +exports.sendFecIsWriting = function (mycallsign) { + command = + '{"type" : "fec", "command" : "transmit_is_writing", "mycallsign" : "' + + mycallsign + + '"}'; + writeTncCommand(command); +}; + // RECORD AUDIO exports.record_audio = function () { command = '{"type" : "set", "command" : "record_audio"}';