Commit 8a33280e authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Fixed windows compilation

parent 87aa800c
......@@ -146,13 +146,13 @@ void QGCVehicleConfig::requestCalibrationRC()
for (unsigned int i = 0; i < chanMax; ++i)
{
mav->requestParameter(0, minTpl.arg(i));
usleep(5000);
QGC::SLEEP::usleep(5000);
mav->requestParameter(0, trimTpl.arg(i));
usleep(5000);
QGC::SLEEP::usleep(5000);
mav->requestParameter(0, maxTpl.arg(i));
usleep(5000);
QGC::SLEEP::usleep(5000);
mav->requestParameter(0, revTpl.arg(i));
usleep(5000);
QGC::SLEEP::usleep(5000);
}
}
......
Supports Markdown
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