Skip to content
Snippets Groups Projects
Commit 6b8fe5e0 authored by Florian Kaltenberger's avatar Florian Kaltenberger
Browse files

added additional value autocal=2 to use calibration values from pcie interface

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4154 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent b6113cea
No related branches found
No related tags found
No related merge requests found
......@@ -234,9 +234,9 @@ static bool any_bad_argument(const octave_value_list &args)
{
for (i=0;i<v.columns();i++)
{
if ((v.row_vector_value()(i)<0.0) || (v.row_vector_value()(i)>1.0)) {
if ((v.row_vector_value()(i)<0.0) || (v.row_vector_value()(i)>2.0)) {
error(FCNNAME);
error("autocal %d must be 0 or 1 (got %f).",i,v.row_vector_value()(i));
error("autocal %d must be 0 or 2 (got %f).",i,v.row_vector_value()(i));
return true;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment