Skip to content

Commit d679e06

Browse files
committed
Warnings about using VOX rather than wired PTT.
1 parent b069d0f commit d679e06

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

src/ptt.c

+21-1
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,27 @@ void ptt_init (struct audio_s *audio_config_p)
11891189
if (audio_config_p->chan_medium[ch] == MEDIUM_RADIO) {
11901190
if(audio_config_p->achan[ch].octrl[OCTYPE_PTT].ptt_method == PTT_METHOD_NONE) {
11911191
text_color_set(DW_COLOR_INFO);
1192-
dw_printf ("Note: PTT not configured for channel %d. (Ignore this if using VOX.)\n", ch);
1192+
dw_printf ("\n");
1193+
dw_printf ("Note: PTT not configured for channel %d. (OK if using VOX.)\n", ch);
1194+
dw_printf ("When using VOX, ensure that it adds very little delay (e.g. 10-20) milliseconds\n");
1195+
dw_printf ("between the time that transmit audio ends and PTT is deactivated.\n");
1196+
dw_printf ("For example, if using a SignaLink USB, turn the DLY control all the\n");
1197+
dw_printf ("way counter clockwise.\n");
1198+
dw_printf ("\n");
1199+
dw_printf ("Using VOX built in to the radio is a VERY BAD idea. This is intended\n");
1200+
dw_printf ("for voice operation, with gaps in the sound, and typically has a delay of about a\n");
1201+
dw_printf ("half second between the time the audio stops and the transmitter is turned off.\n");
1202+
dw_printf ("When using APRS your transmiter will be sending a quiet carrier for\n");
1203+
dw_printf ("about a half second after your packet ends. This may interfere with the\n");
1204+
dw_printf ("the next station to transmit. This is being inconsiderate.\n");
1205+
dw_printf ("\n");
1206+
dw_printf ("If you are trying to use VOX with connected mode packet, expect\n");
1207+
dw_printf ("frustration and disappointment. Connected mode involves rapid responses\n");
1208+
dw_printf ("which you will probably miss because your transmitter is still on when\n");
1209+
dw_printf ("the response is being transmitted.\n");
1210+
dw_printf ("\n");
1211+
dw_printf ("Read the User Guide 'Transmit Timing' section for more details.\n");
1212+
dw_printf ("\n");
11931213
}
11941214
}
11951215
}

0 commit comments

Comments
 (0)