#ifndef QGCCONFIGVIEW_H
#define QGCCONFIGVIEW_H
#include <QWidget>
#include <UASInterface.h>
namespace Ui {
class QGCConfigView;
}
class QGCConfigView : public QWidget
{
Q_OBJECT
public:
explicit QGCConfigView(QWidget *parent = 0);
~QGCConfigView();
public slots:
void activeUASChanged(UASInterface* uas);
private:
Ui::QGCConfigView *ui;
QWidget *config;
UASInterface* mav;
};
#endif // QGCCONFIGVIEW_H
-
Lorenz Meier authored
Instantiate a PX4 config view in PX4 mode from start, since boards with just the bootloader (or no working telemetry) cannot be flashed else.
1ce02853