Unverified Commit dbcf8173 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #9013 from DonLakeFlyer/PX4MagCal

PX4 Compass Cal: Support unlimited compasses
parents 4543866b b0e79c0b
......@@ -347,7 +347,7 @@ void SensorsComponentController::_handleUASTextMessage(int uasId, int compId, in
if (text.endsWith("orientation detected")) {
QString side = text.section(" ", 0, 0);
qDebug() << "Side started" << side;
qCDebug(SensorsComponentControllerLog) << "Side started" << side;
if (side == "down") {
_orientationCalDownSideInProgress = true;
......@@ -394,7 +394,7 @@ void SensorsComponentController::_handleUASTextMessage(int uasId, int compId, in
if (text.endsWith("side done, rotate to a different side")) {
QString side = text.section(" ", 0, 0);
qDebug() << "Side finished" << side;
qCDebug(SensorsComponentControllerLog) << "Side finished" << side;
if (side == "down") {
_orientationCalDownSideInProgress = false;
......
This diff is collapsed.
......@@ -109,7 +109,6 @@ T.HorizontalFactValueGrid {
for (var i=0; i<valueRepeater.count; i++) {
newMaxWidth = Math.max(newMaxWidth, valueRepeater.itemAt(0).contentWidth)
}
console.log("recalcWidth", newMaxWidth, maxWidth)
maxWidth = Math.min(maxWidth, newMaxWidth)
}
......
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