Browse Source

working on parameter interface

QGC4.4
Bryan Godbolt 15 years ago
parent
commit
2238f37108
  1. 5
      src/comm/QGCParamID.h
  2. 2
      src/uas/UAS.cc

5
src/comm/QGCParamID.h

@ -2,12 +2,11 @@ @@ -2,12 +2,11 @@
#define QGCPARAMID_H
#include <QString>
#include <QObject>
namespace OpalRT
{
class QGCParamID : public QString
class QGCParamID : protected QString
{
Q_OBJECT
public:
QGCParamID();
};

2
src/uas/UAS.cc

@ -537,7 +537,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message) @@ -537,7 +537,7 @@ void UAS::receiveMessage(LinkInterface* link, mavlink_message_t message)
emit textMessageReceived(uasId, message.compid, severity, text);
}
break;
#ifdef OPAL_RT
#ifdef MAVLINK_ENABLED_UALBERTA_MESSAGES
case MAVLINK_MSG_ID_NAV_FILTER_BIAS:
{
mavlink_nav_filter_bias_t bias;

Loading…
Cancel
Save