Skip to content
Snippets Groups Projects
Commit 27ca0386 authored by C-Glick's avatar C-Glick
Browse files

Added error messages to sending setpoints from gui

parent 46255ba9
No related branches found
No related tags found
3 merge requests!76lots of gui updates,!75Lost of gui updates,!74lots of gui updates among others
......@@ -107,7 +107,9 @@ void CrazyflieWorker::sendAttRateSetpoint()
data.yaw = currAttitudeRateSetpoint.yaw;
//send setpoint
frontend_setoutputoverride(conn, &data);
if(frontend_setoutputoverride(conn, &data) != 0){
qInfo() << "error sending att rate setpoint";
}
}
}
......@@ -127,7 +129,9 @@ void CrazyflieWorker::sendAttSetpoint()
data.yaw = currAttitudeSetpoint.yaw;
//send setpoint
frontend_setoutputoverride(conn, &data);
if(frontend_setoutputoverride(conn, &data) != 0){
qInfo() << "error sending att setpoint";
}
}
}
......@@ -148,7 +152,9 @@ void CrazyflieWorker::sendMixedAttSetpoint(){
//send setpoint
frontend_setoutputoverride(conn, &data);
if(frontend_setoutputoverride(conn, &data) != 0){
qInfo() << "error sending mixed att setpoint";
}
}
}
......
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