added missing newline characters

pull/6/head
Wojciech Kaczmarski 2023-09-10 18:36:33 +02:00 zatwierdzone przez GitHub
rodzic 48c3d8ce14
commit 19eb0beb60
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -366,14 +366,14 @@ int main(int argc, char* argv[])
else
{
fprintf(stderr, "Not enough params. Usage:\n");
fprintf(stderr, "-S - source callsign (uppercase alphanumeric string) max. 9 characters,");
fprintf(stderr, "-D - destination callsign (uppercase alphanumeric string) or ALL for boradcast,");
fprintf(stderr, "-C - Channel Access Number (0..15, default - 10),");
fprintf(stderr, "-n - number of bytes (1 to 798),");
fprintf(stderr, "-o - output file path/name,");
fprintf(stderr, "-S - source callsign (uppercase alphanumeric string) max. 9 characters,\n");
fprintf(stderr, "-D - destination callsign (uppercase alphanumeric string) or ALL for boradcast,\n");
fprintf(stderr, "-C - Channel Access Number (0..15, default - 10),\n");
fprintf(stderr, "-n - number of bytes (1 to 798),\n");
fprintf(stderr, "-o - output file path/name,\n");
fprintf(stderr, "Output formats:\n");
//fprintf(stderr, "-x - binary output (M17 baseband as a packed bitstream),");
fprintf(stderr, "-r - raw audio output (single channel, signed 16-bit LE, +7168 for the +1.0 symbol, 10 samples per symbol),");
//fprintf(stderr, "-x - binary output (M17 baseband as a packed bitstream),\n");
fprintf(stderr, "-r - raw audio output (single channel, signed 16-bit LE, +7168 for the +1.0 symbol, 10 samples per symbol),\n");
fprintf(stderr, "-s - signed 16-bit LE symbols output\n");
return -1;
}