Increased average Olivia power

Balanced tone power between pre/post amble tones and
the mfsk tones
pull/2/head
David Freese 2008-12-26 20:36:25 -06:00
rodzic 30054367a5
commit 4468f1026b
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -200,8 +200,9 @@ int olivia::tx_process()
put_echo_char(c);
if ((len = Tx->Output(txbuffer)) > 0) {
for (i = 0; i < len; i++)
txfbuffer[i] = (double) (txbuffer[i] / 32767.0);
for (i = 0; i < len; i++) {
txfbuffer[i] = (double) (txbuffer[i] / 24000.0);
}
ModulateXmtr(txfbuffer, len);
}