From db543c43e18163b085d0292e703ad09877c05845 Mon Sep 17 00:00:00 2001 From: phdlee Date: Fri, 26 Jan 2018 18:23:52 +0900 Subject: [PATCH] Add Comment --- ubitx_20/cat_libs.ino | 1 + ubitx_20/cw_autokey.ino | 3 +++ ubitx_20/ubitx_20.ino | 6 ++++++ ubitx_20/ubitx_keyer.ino | 11 ++++++----- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/ubitx_20/cat_libs.ino b/ubitx_20/cat_libs.ino index b4c67ec..7a29dd8 100644 --- a/ubitx_20/cat_libs.ino +++ b/ubitx_20/cat_libs.ino @@ -1,4 +1,5 @@ /************************************************************************* + KD8CEC's CAT Library for uBITX and HAM This source code is written for uBITX, but it can also be used on other radios. The CAT protocol is used by many radios to provide remote control to comptuers through diff --git a/ubitx_20/cw_autokey.ino b/ubitx_20/cw_autokey.ino index 3dfbb3b..7f20461 100644 --- a/ubitx_20/cw_autokey.ino +++ b/ubitx_20/cw_autokey.ino @@ -1,4 +1,6 @@ /************************************************************************* + KD8CEC'S Memory Keyer for HAM + This source code is written for All amateur radio operator, I have not had amateur radio communication for a long time. CW has been around for a long time, and I do not know what kind of keyer and keying @@ -13,6 +15,7 @@ I wrote this code myself, so there is no license restriction. So this code allows anyone to write with confidence. But keep it as long as the original author of the code. + DE Ian KD8CEC ----------------------------------------------------------------------------- This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/ubitx_20/ubitx_20.ino b/ubitx_20/ubitx_20.ino index a765fdb..f5d986e 100644 --- a/ubitx_20/ubitx_20.ino +++ b/ubitx_20/ubitx_20.ino @@ -1,4 +1,10 @@ /** + Since KD8CEC Version 0.29, most of the original code is no longer available. + Most features(TX, Frequency Range, Ham Band, TX Control, CW delay, start Delay... more) have been added by KD8CEC. + However, the license rules are subject to the original source rules. + DE Ian KD8CEC + + Original source comment ------------------------------------------------------------- * This source file is under General Public License version 3. * * This verision uses a built-in Si5351 library diff --git a/ubitx_20/ubitx_keyer.ino b/ubitx_20/ubitx_keyer.ino index 99dd5af..bae1396 100644 --- a/ubitx_20/ubitx_keyer.ino +++ b/ubitx_20/ubitx_keyer.ino @@ -1,8 +1,9 @@ /** - * CW Keyer - * CW Key logic change with ron's code (ubitx_keyer.cpp) <=== ********************************** - * The file you are working on. The code only applies and is still in testing. <==== *********** - * + CW Keyer + CW Key logic change with ron's code (ubitx_keyer.cpp) + Ron's logic has been modified to work with the original uBITX by KD8CEC + + Original Comment ---------------------------------------------------------------------------- * The CW keyer handles either a straight key or an iambic / paddle key. * They all use just one analog input line. This is how it works. * The analog line has the internal pull-up resistor enabled. @@ -163,6 +164,7 @@ char update_PaddleLatch(byte isUpdateKeyState) { return tmpKeyerControl; } +//This function is Ron's Logic. void cwKeyer(void){ byte paddle; lastPaddle = 0; @@ -282,7 +284,6 @@ while(continue_loop){ } - //======================================================================================= //Before logic //by Farhan and modified by KD8CEC