]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Renamed PTT(Keyer) to PTT.
authorc vw <dl1ycf@darc.de>
Wed, 11 Aug 2021 15:03:58 +0000 (17:03 +0200)
committerc vw <dl1ycf@darc.de>
Wed, 11 Aug 2021 15:03:58 +0000 (17:03 +0200)
midi.h
midi2.c
midi3.c

diff --git a/midi.h b/midi.h
index 8105c50fc4bca09f6c4c3d3d626cd3e10d201c9e..c79bc46e843c58655862f8ecb3cd7c4735e31500 100644 (file)
--- a/midi.h
+++ b/midi.h
@@ -131,7 +131,7 @@ enum MIDIaction {
   MIDI_ACTION_PAN_HIGH,                // PANHIGH:             "high" value of current panadapter
   MIDI_ACTION_PAN_LOW,         // PANLOW:              "low" value of current panadapter
   MIDI_ACTION_PRE,             // PREAMP:              preamp on/off
-  MIDI_ACTION_PTTKEYER,                // PTT(Keyer):                  set PTT state to "on" or "off"
+  MIDI_ACTION_PTT,             // PTT:                 set PTT state to "on" or "off"
   MIDI_ACTION_PS,              // PURESIGNAL:          toggle PURESIGNAL on/off
   MIDI_ACTION_RF_GAIN,         // RFGAIN:              receiver RF gain
   MIDI_ACTION_TX_DRIVE,                // RFPOWER:             adjust TX RF output power
diff --git a/midi2.c b/midi2.c
index 640be8cd932f968599ffe1dcb62d7f6892dc0782..30b96d1b155bb20492c3b20a6a74f4f5e2c88483 100644 (file)
--- a/midi2.c
+++ b/midi2.c
@@ -62,7 +62,7 @@ void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) {
                         case MIDI_ACTION_CWLEFT:
                         case MIDI_ACTION_CWRIGHT:
                         case MIDI_ACTION_CWKEYER:
-                        case MIDI_ACTION_PTTKEYER:
+                        case MIDI_ACTION_PTT:
                           // deliver message for note-on and note-off
                           DoTheMidi(desc->action, desc->type, val);
                           break;
@@ -218,7 +218,7 @@ ACTION_TABLE ActionTable[] = {
         { MIDI_ACTION_PAN_HIGH,                "PANHIGH",              MIDI_KNOB|MIDI_WHEEL            },
         { MIDI_ACTION_PAN_LOW,                 "PANLOW",               MIDI_KNOB|MIDI_WHEEL            },
         { MIDI_ACTION_PRE,                     "PREAMP",               MIDI_KEY                        },
-        { MIDI_ACTION_PTTKEYER,                "PTT(Keyer)",           MIDI_KEY                        },
+        { MIDI_ACTION_PTT,             "PTT",                  MIDI_KEY                        },
         { MIDI_ACTION_PS,               "PURESIGNAL",          MIDI_KEY                        },
         { MIDI_ACTION_RF_GAIN,                 "RFGAIN",               MIDI_KNOB|MIDI_WHEEL            },
         { MIDI_ACTION_TX_DRIVE,         "RFPOWER",             MIDI_KNOB|MIDI_WHEEL            },
diff --git a/midi3.c b/midi3.c
index f6325866da01ab85af2fc8e617da056102cb81e2..b097999726c79cccc857f38db2586bdb66920af3 100644 (file)
--- a/midi3.c
+++ b/midi3.c
@@ -583,7 +583,7 @@ int DoTheRestOfTheMIDI(void *data) {
        /////////////////////////////////////////////////////////// "MOX"
        case MIDI_ACTION_MOX: // only key supported
            // Note this toggles the PTT state without knowing the
-            // actual state. See MIDI_ACTION_PTTKEYER for actually
+            // actual state. See MIDI_ACTION_PTT for actually
             // *setting* PTT
            if (can_transmit) {
                new = !mox;