diff --git a/src/cnetz/main.c b/src/cnetz/main.c index 87e1ec5b..f9ed9bf0 100644 --- a/src/cnetz/main.c +++ b/src/cnetz/main.c @@ -52,7 +52,7 @@ int auth = 0; void print_help(const char *arg0) { - print_help_common(arg0, ""); + print_help_common(arg0, "-S , -E -e "); /* - - */ printf(" -t --channel-type | list\n"); printf(" Give channel type, use 'list' to get a list. (default = '%s')\n", chan_type_short_name(chan_type[0])); @@ -265,6 +265,15 @@ int main(int argc, char *argv[]) if (i == num_kanal) fprintf(stderr, "You did not define any SpK (speech) channel. You will not be able to make any call.\n"); + if (!do_pre_emphasis || !do_de_emphasis) { + fprintf(stderr, "*******************************************************************************\n"); + fprintf(stderr, "I strongly suggest to let me do pre- and de-emphasis (options -E -e)!\n"); + fprintf(stderr, "Use a transmitter/receiver without emphasis and let me do that!\n"); + fprintf(stderr, "Because carrier FSK signalling and scrambled voice (default) does not use\n"); + fprintf(stderr, "emphasis, I like to control emphasis by myself for best results.\n"); + fprintf(stderr, "*******************************************************************************\n"); + } + polarity = 0; /* auto */ if (!strcmp(flip_polarity, "no")) polarity = 1; /* positive */