From 4468f1026b3fe00270b621bad93b3928327473d7 Mon Sep 17 00:00:00 2001 From: David Freese Date: Fri, 26 Dec 2008 20:36:25 -0600 Subject: [PATCH] Increased average Olivia power Balanced tone power between pre/post amble tones and the mfsk tones --- src/olivia/olivia.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/olivia/olivia.cxx b/src/olivia/olivia.cxx index 50c61501..d89e4fed 100644 --- a/src/olivia/olivia.cxx +++ b/src/olivia/olivia.cxx @@ -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); }