Commit 653342f9 authored by limingbo's avatar limingbo

test

parent 68829444
Pipeline #873 failed with stages
......@@ -24,17 +24,19 @@ Trajectory::~Trajectory()
bool Trajectory::init()
{
string range;
if(frequency_ == 0){
switch(trajType_){
case PPK:
switch(trajType_){
case PPK:
if(frequency_ == 0){
frequency_ = 1000;
range = ",";
break;
case NODE:
}
range = ",";
break;
case NODE:
if(frequency_ == 0){
frequency_ = 10;
range = " ";
break;
}
range = " ";
break;
}
LOG(INFO) << "Trajectory set frequency: " << frequency_;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment