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"}';