diff --git a/application/views/qso/index.php b/application/views/qso/index.php
index 6cc47c1ca..cb00380e1 100644
--- a/application/views/qso/index.php
+++ b/application/views/qso/index.php
@@ -654,6 +654,8 @@
+
+
diff --git a/assets/js/winkey.js b/assets/js/winkey.js
index 6d51550d1..f8bbc0be5 100644
--- a/assets/js/winkey.js
+++ b/assets/js/winkey.js
@@ -163,6 +163,18 @@ function stop_cw_sending() {
sendHexToSerial("0A");
}
+function send_carrier() {
+ sendHexToSerial("0B 01");
+ $("#send_carrier").attr("hidden", true);
+ $("#stop_carrier").attr("hidden", false);
+}
+
+function stop_carrier() {
+ sendHexToSerial("0B 00");
+ $("#send_carrier").attr("hidden", false);
+ $("#stop_carrier").attr("hidden", true);
+}
+
function delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}