Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c035b1a

Browse files
wb2oszbjpetit
authored andcommittedJul 13, 2024
Warnings about using VOX rather than wired PTT.
1 parent a2fb585 commit c035b1a

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
@@ -1123,7 +1123,27 @@ void ptt_init (struct audio_s *audio_config_p)
11231123
if (audio_config_p->chan_medium[ch] == MEDIUM_RADIO) {
11241124
if(audio_config_p->achan[ch].octrl[OCTYPE_PTT].ptt_method == PTT_METHOD_NONE) {
11251125
text_color_set(DW_COLOR_INFO);
1126-
dw_printf ("Note: PTT not configured for channel %d. (Ignore this if using VOX.)\n", ch);
1126+
dw_printf ("\n");
1127+
dw_printf ("Note: PTT not configured for channel %d. (OK if using VOX.)\n", ch);
1128+
dw_printf ("When using VOX, ensure that it adds very little delay (e.g. 10-20) milliseconds\n");
1129+
dw_printf ("between the time that transmit audio ends and PTT is deactivated.\n");
1130+
dw_printf ("For example, if using a SignaLink USB, turn the DLY control all the\n");
1131+
dw_printf ("way counter clockwise.\n");
1132+
dw_printf ("\n");
1133+
dw_printf ("Using VOX built in to the radio is a VERY BAD idea. This is intended\n");
1134+
dw_printf ("for voice operation, with gaps in the sound, and typically has a delay of about a\n");
1135+
dw_printf ("half second between the time the audio stops and the transmitter is turned off.\n");
1136+
dw_printf ("When using APRS your transmiter will be sending a quiet carrier for\n");
1137+
dw_printf ("about a half second after your packet ends. This may interfere with the\n");
1138+
dw_printf ("the next station to transmit. This is being inconsiderate.\n");
1139+
dw_printf ("\n");
1140+
dw_printf ("If you are trying to use VOX with connected mode packet, expect\n");
1141+
dw_printf ("frustration and disappointment. Connected mode involves rapid responses\n");
1142+
dw_printf ("which you will probably miss because your transmitter is still on when\n");
1143+
dw_printf ("the response is being transmitted.\n");
1144+
dw_printf ("\n");
1145+
dw_printf ("Read the User Guide 'Transmit Timing' section for more details.\n");
1146+
dw_printf ("\n");
11271147
}
11281148
}
11291149
}

0 commit comments

Comments
 (0)