From e94e1c5535d135730e69c78f142ebb9e2a04ddb1 Mon Sep 17 00:00:00 2001
From: Cirkic <cirkic@eurecom.fr>
Date: Mon, 29 Jul 2013 10:01:20 +0000
Subject: [PATCH] added autocal argument to oarf_config_exmimo. scripts still
 need to be updated.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4053 818b1a75-f10b-46b9-bf7c-635c3b92a50f
---
 .../USERSPACE/OCTAVE/oarf_config_exmimo.cc    | 23 ++++++++++++++++---
 1 file changed, 20 insertions(+), 3 deletions(-)

diff --git a/targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_config_exmimo.cc b/targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_config_exmimo.cc
index 4f1209d0d7..2bae21db2a 100644
--- a/targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_config_exmimo.cc
+++ b/targets/ARCH/EXMIMO/USERSPACE/OCTAVE/oarf_config_exmimo.cc
@@ -21,11 +21,11 @@ static bool any_bad_argument(const octave_value_list &args)
   octave_value v,w;
   int i;
 
-  if (args.length()!=15)
+  if (args.length()!=16)
     {
       error(FCNNAME);
       error("Wrong number of parameters! Did you add the card number as first parameter?");
-      error("syntax: oarf_config_exmimo(card,freqrx,freq_tx,tdd_config,syncmode,rxgain,txgain,eNB_flag,rf_mode,rx_dc,rf_local,rf_vcolocal,rffe_rxg_low,rffe_rxg_final)");
+      error("syntax: oarf_config_exmimo(card,freqrx,freq_tx,tdd_config,syncmode,rxgain,txgain,eNB_flag,rf_mode,rx_dc,rf_local,rf_vcolocal,rffe_rxg_low,rffe_rxg_final,autocal)");
       return true;
     }
 
@@ -229,6 +229,22 @@ static bool any_bad_argument(const octave_value_list &args)
     error("number of columns for rffe_band must be 4\n");
   }
 
+  v = args(15);
+  if (v.columns() == 4)
+    {
+      for (i=0;i<v.columns();i++)
+        {
+	  if ((v.row_vector_value()(i)<0.0) || (v.row_vector_value()(i)>1.0)) {
+	    error(FCNNAME);
+	    error("autocal %d must be 0 or 1 (got %f).",i,v.row_vector_value()(i));
+	    return true;
+	  }
+        }
+    }
+  else {
+    error(FCNNAME);
+    error("number of columns for autocal must be 4\n");
+  }
 
     
   if ( !args(0).is_real_scalar() )
@@ -267,6 +283,7 @@ DEFUN_DLD (oarf_config_exmimo, args, nargout,"configure the openair interface -
   RowVector rffe_rxg_low   = args(12).row_vector_value();
   RowVector rffe_rxg_final = args(13).row_vector_value();
   RowVector rffe_band      = args(14).row_vector_value();
+  RowVector autocal        = args(15).row_vector_value();
   int rffe_band_int;
     
   exmimo_config_t *p_exmimo_config;
@@ -319,7 +336,7 @@ DEFUN_DLD (oarf_config_exmimo, args, nargout,"configure the openair interface -
 
       for (ant=0; ant<4; ant++)
         {
-	  p_exmimo_config->rf.do_autocal[ant]  = 1;
+	  p_exmimo_config->rf.do_autocal[ant] = autocal(ant);
 	  p_exmimo_config->rf.rf_freq_rx[ant] = freqrx(ant);
 	  p_exmimo_config->rf.rf_freq_tx[ant] = freqtx(ant);
 	  p_exmimo_config->rf.rx_gain[ant][0] = (uint32_t) rxgain(ant);
-- 
GitLab