forked from mavlink/qgroundcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the initial stub for the AirFrame configuration for APM
This commit introduces the APM Airframe configuration. The interface is the same as the PX4 one, but the way we deal with the uas is a bit different Since the APM stack doesn't provide a xml with airframe definitions a new one was created by hand with only the values that we need, wich will trigger a download of the parameters file from the mavlink github Now it correctly handles the FRAME variable and it's faster regarding the download of the parameters for each type of Frame. Only show Airframes for ArduCopter, not for ArduRover nor ArduPlane Signed-off-by: Tomaz Canabrava <[email protected]>
- Loading branch information
1 parent
4660402
commit ff32b9f
Showing
25 changed files
with
1,312 additions
and
206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/*===================================================================== | ||
QGroundControl Open Source Ground Control Station | ||
(c) 2009, 2015 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org> | ||
This file is part of the QGROUNDCONTROL project | ||
QGROUNDCONTROL is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
QGROUNDCONTROL is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>. | ||
======================================================================*/ | ||
|
||
/// @file | ||
/// @author Don Gagne <[email protected]> | ||
|
||
#include "APMAirframeComponentAirframes.h" | ||
#include "APMAirframeComponentController.h" | ||
|
||
QMap<QString, APMAirframeComponentAirframes::AirframeType_t*> APMAirframeComponentAirframes::rgAirframeTypes; | ||
|
||
QMap<QString, APMAirframeComponentAirframes::AirframeType_t*>& APMAirframeComponentAirframes::get() { | ||
return rgAirframeTypes; | ||
} | ||
|
||
void APMAirframeComponentAirframes::insert(const QString& group, int groupId, const QString& image,const QString& name, const QString& file) | ||
{ | ||
AirframeType_t *g; | ||
if (!rgAirframeTypes.contains(group)) { | ||
g = new AirframeType_t; | ||
g->name = group; | ||
g->type = groupId; | ||
g->imageResource = QString("qrc:/qmlimages/") + (!image.isEmpty() ? image : QString("AirframeStandardPlane.png")); | ||
rgAirframeTypes.insert(group, g); | ||
} else { | ||
g = rgAirframeTypes.value(group); | ||
} | ||
|
||
if (!name.isEmpty() && !file.isEmpty()) | ||
g->rgAirframeInfo.append(new APMAirframe(name, file, g->type)); | ||
} | ||
|
||
void APMAirframeComponentAirframes::clear() { | ||
QList<AirframeType_t*> valueList = get().values(); | ||
foreach(AirframeType_t *pType, valueList) { | ||
qDeleteAll(pType->rgAirframeInfo); | ||
delete pType; | ||
} | ||
rgAirframeTypes.clear(); | ||
} |
Oops, something went wrong.