|
@@ -67,13 +67,13 @@ void DataExchangeClient::dec_yaml(const char *stryamlpath)
|
|
|
catch(YAML::BadFile &e)
|
|
|
{
|
|
|
std::cout<<e.what()<<std::endl;
|
|
|
- qDebug("yaml file load fail.");
|
|
|
+ std::cout<<"yaml file load fail."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
catch(YAML::ParserException &e)
|
|
|
{
|
|
|
std::cout<<e.what()<<std::endl;
|
|
|
- qDebug("yaml file is malformed.");
|
|
|
+ std::cout<<"yaml file is malformed."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -220,7 +220,7 @@ void DataExchangeClient::ListenFrontPicMsg(const char * strdata,const unsigned i
|
|
|
iv::vision::rawpic xdata;
|
|
|
if(!xdata.ParseFromArray(strdata,nSize))
|
|
|
{
|
|
|
- std::cout<<" MainWindow::UpdateSlider parese error."<<std::endl;
|
|
|
+ std::cout<<" ListenFrontPicMsg parese error."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -238,7 +238,7 @@ void DataExchangeClient::ListenRearPicMsg(const char * strdata,const unsigned in
|
|
|
iv::vision::rawpic xdata;
|
|
|
if(!xdata.ParseFromArray(strdata,nSize))
|
|
|
{
|
|
|
- std::cout<<" MainWindow::UpdateSlider parese error."<<std::endl;
|
|
|
+ std::cout<<" ListenRearPicMsg parese error."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -256,7 +256,7 @@ void DataExchangeClient::ListenLeftPicMsg(const char * strdata,const unsigned in
|
|
|
iv::vision::rawpic xdata;
|
|
|
if(!xdata.ParseFromArray(strdata,nSize))
|
|
|
{
|
|
|
- std::cout<<" MainWindow::UpdateSlider parese error."<<std::endl;
|
|
|
+ std::cout<<" ListenLeftPicMsg parese error."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -274,7 +274,7 @@ void DataExchangeClient::ListenRightPicMsg(const char * strdata,const unsigned i
|
|
|
iv::vision::rawpic xdata;
|
|
|
if(!xdata.ParseFromArray(strdata,nSize))
|
|
|
{
|
|
|
- std::cout<<" MainWindow::UpdateSlider parese error."<<std::endl;
|
|
|
+ std::cout<<" ListenRightPicMsg parese error."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -292,7 +292,7 @@ void DataExchangeClient::ListenChassisMsg(const char * strdata,const unsigned in
|
|
|
iv::chassis xdata;
|
|
|
if(!xdata.ParseFromArray(strdata,nSize))
|
|
|
{
|
|
|
- std::cout<<" MainWindow::UpdateSlider parese error."<<std::endl;
|
|
|
+ std::cout<<" ListenChassisMsg parese error."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -307,7 +307,7 @@ void DataExchangeClient::ListenGPSIMUMsg(const char * strdata,const unsigned int
|
|
|
iv::gps::gpsimu xdata;
|
|
|
if(!xdata.ParseFromArray(strdata,nSize))
|
|
|
{
|
|
|
- std::cout<<" MainWindow::UpdateSlider parese error."<<std::endl;
|
|
|
+ std::cout<<" ListenGPSIMUMsg parese error."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|
|
@@ -331,7 +331,7 @@ void DataExchangeClient::ListenPlatformFeedbackMsg(const char * strdata,const un
|
|
|
iv::platformFeedback xdata;
|
|
|
if(!xdata.ParseFromArray(strdata,nSize))
|
|
|
{
|
|
|
- std::cout<<" MainWindow::UpdateSlider parese error."<<std::endl;
|
|
|
+ std::cout<<" ListenPlatformFeedbackMsg parese error."<<std::endl;
|
|
|
return;
|
|
|
}
|
|
|
|