Golay: Add voice message support

A voice message can be sent with a wave file. Pagers that support voice
messages will listen to the wave file on the radio channel.

Use the following command to send a voice message:

	$ echo "1709829,v,<wave file>" > /tmp/golay_msg_send
This commit is contained in:
Andreas Eversberg
2023-10-08 12:09:52 +02:00
parent a949470ec3
commit f4eba26d27
4 changed files with 186 additions and 66 deletions

View File

@@ -73,6 +73,7 @@ void print_help(const char *arg0)
printf(" Write \"<address>[,message]\" to it, to send a default message.\n");
printf(" Write \"<address>,n,message\" to it, to send a numeric message.\n");
printf(" Write \"<address>,a,message\" to it, to send an alphanumeric message.\n");
printf(" Write \"<address>,v,<wave file name>\" to it, to send a voice message.\n");
printf("\n");
printf("By default, an alphanumic message is sent, if last digit of the functional\n");
printf("address is 5..8. Otherwise a tone only message is sent.\n");