From 58d955ea10d67e0407cdd01def3aef65a34d2944 Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Thu, 25 Aug 2016 19:04:36 -0700 Subject: [PATCH] psdch_ue: disabled agc by default. Set default gain to 70 dB --- srslte/examples/pdsch_ue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srslte/examples/pdsch_ue.c b/srslte/examples/pdsch_ue.c index 8c986ab75..e347f0e71 100644 --- a/srslte/examples/pdsch_ue.c +++ b/srslte/examples/pdsch_ue.c @@ -39,7 +39,7 @@ #include "srslte/srslte.h" -#define ENABLE_AGC_DEFAULT +//#define ENABLE_AGC_DEFAULT #ifndef DISABLE_RF #include "srslte/rf/rf.h" @@ -116,7 +116,7 @@ void args_default(prog_args_t *args) { #ifdef ENABLE_AGC_DEFAULT args->rf_gain = -1.0; #else - args->rf_gain = 50.0; + args->rf_gain = 70.0; #endif args->net_port = -1; args->net_address = "127.0.0.1";