From 098a8293c28229fde1328fc1e6289f8f072a9fbf Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 23 May 2022 15:52:01 +0000 Subject: [PATCH] - changed default values git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@870 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- Source/Receiver.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Receiver.cpp b/Source/Receiver.cpp index 428155b..56c1d0b 100644 --- a/Source/Receiver.cpp +++ b/Source/Receiver.cpp @@ -19,15 +19,15 @@ const uint32_t RCF_OVERSAMPLING = 16; // RCF_TYPE_POLYPHASE_DISCRETE: const radio_float_t RCF_ROLLOFF = (radio_float_t)0.35; // RCF_TYPE_POLYPHASE_DISCRETE: RC Roll-off const uint32_t RCF_NUM_PHASES = 256; // RCF_TYPE_POLYPHASE_DISCRETE: number of discrete phases -const radio_float_t CPR_GAIN_LEAD_AQU = (radio_float_t)5.0E-5; // 3E-5 -const radio_float_t CPR_GAIN_LAG_AQU = (radio_float_t)0.4E-6; // 1E-6 -const radio_float_t CPR_GAIN_LEAD_TRK = (radio_float_t)1.0E-6; // 1E-5 -const radio_float_t CPR_GAIN_LAG_TRK = (radio_float_t)2.0E-8; // 5E-7 +const radio_float_t CPR_GAIN_LEAD_AQU = (radio_float_t)5.00E-5; // 3E-5 +const radio_float_t CPR_GAIN_LAG_AQU = (radio_float_t)0.40E-6; // 1E-6 +const radio_float_t CPR_GAIN_LEAD_TRK = (radio_float_t)1.00E-6; // 1E-5 +const radio_float_t CPR_GAIN_LAG_TRK = (radio_float_t)1.00E-9; // 5E-7 const radio_float_t STR_GAIN_LEAD_AQU = (radio_float_t)4.00E-4; // 2E-3 const radio_float_t STR_GAIN_LAG_AQU = (radio_float_t)0.50E-6; // 5E-7 const radio_float_t STR_GAIN_LEAD_TRK = (radio_float_t)4.00E-6; // 8E-4 -const radio_float_t STR_GAIN_LAG_TRK = (radio_float_t)0.02E-6; // 1E-6 +const radio_float_t STR_GAIN_LAG_TRK = (radio_float_t)1.00E-9; // 1E-6 const radio_float_t AGC_INITIAL_VALUE = (radio_float_t)2.0; const radio_float_t AGC_ADAPTION_RATE = (radio_float_t)0.001;