From d775eb536a8370bfb67d306247ea8b79a2648ba3 Mon Sep 17 00:00:00 2001 From: Philippe Renon Date: Mon, 16 Jun 2014 23:06:06 +0200 Subject: [PATCH] OP-1351 changed some thermal calibration instruction messages from Warn to Info --- .../config/calibration/thermal/thermalcalibrationhelper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ground/openpilotgcs/src/plugins/config/calibration/thermal/thermalcalibrationhelper.cpp b/ground/openpilotgcs/src/plugins/config/calibration/thermal/thermalcalibrationhelper.cpp index 6013ed989..1190fb537 100644 --- a/ground/openpilotgcs/src/plugins/config/calibration/thermal/thermalcalibrationhelper.cpp +++ b/ground/openpilotgcs/src/plugins/config/calibration/thermal/thermalcalibrationhelper.cpp @@ -315,7 +315,7 @@ void ThermalCalibrationHelper::calculate() m_results.baroCalibrated = ThermalCalibration::BarometerCalibration(datax, datat, m_results.baro, &m_results.baroInSigma, &m_results.baroOutSigma); if (m_results.baroCalibrated) { - addInstructions(tr("Barometer calibrated."), WizardModel::Warn); + addInstructions(tr("Barometer is calibrated.")); } else { qDebug() << "Failed to calibrate baro!"; addInstructions(tr("Failed to calibrate barometer!"), WizardModel::Warn); @@ -341,7 +341,7 @@ void ThermalCalibrationHelper::calculate() m_results.gyroCalibrated = ThermalCalibration::GyroscopeCalibration(datax, datay, dataz, datat, m_results.gyro, m_results.gyroInSigma, m_results.gyroOutSigma); if (m_results.gyroCalibrated) { - addInstructions(tr("Gyro calibrated."), WizardModel::Warn); + addInstructions(tr("Gyro is calibrated.")); } else { qDebug() << "Failed to calibrate gyro!"; addInstructions(tr("Failed to calibrate gyro!"), WizardModel::Warn);