POCSAG: Minor fixes.

This commit is contained in:
Andreas Eversberg 2022-07-30 13:38:46 +02:00
parent 4e669ecf79
commit b3e00b5085
2 changed files with 3 additions and 3 deletions

View File

@ -59,9 +59,9 @@ void print_help(const char *arg0)
main_mobile_print_help(arg0, "-k 466.230 | -k list");
/* - - */
printf(" -T --tx\n");
printf(" Transmit Eurosignal on given channel, to page a receiver. (default)\n");
printf(" Transmit POCSAG signal on given channel, to page a receiver. (default)\n");
printf(" -R --rx\n");
printf(" Receive Eurosignal on given channel, so we are the receiver.\n");
printf(" Receive POCSAG signal on given channel, so we are the receiver.\n");
printf(" If none of the options -T nor -R is given, only transmitter is enabled.\n");
printf(" -B --baud-rate 512 | 1200 | 2400\n");
printf(" Choose baud rate of transmitter.\n");

View File

@ -481,7 +481,7 @@ void call_down_clock(void)
}
/* Call control starts call towards paging network. */
int call_down_setup(int callref, const char __attribute__((unused)) *caller_id, enum number_type __attribute__((unused)) caller_type, const char *dialing)
int call_down_setup(int callref, const char *caller_id, enum number_type __attribute__((unused)) caller_type, const char *dialing)
{
char channel = '\0';
sender_t *sender;