1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-12-02 10:24:11 +01:00

Merge branch 'pt/CC3D_Release' of ssh://git.openpilot.org/OpenPilot into pt/CC3D_Release

Conflicts:
	ground/openpilotgcs/src/plugins/config/cfg_vehicletypes/configfixedwingwidget.cpp
	ground/openpilotgcs/src/plugins/config/cfg_vehicletypes/configgroundvehiclewidget.cpp
	ground/openpilotgcs/src/plugins/config/cfg_vehicletypes/configmultirotorwidget.cpp
	ground/openpilotgcs/src/plugins/config/cfg_vehicletypes/vehicleconfig.cpp
	ground/openpilotgcs/src/plugins/config/configinputwidget.cpp
	ground/openpilotgcs/src/plugins/config/configoutputwidget.cpp
	ground/openpilotgcs/src/plugins/config/configvehicletypewidget.cpp
This commit is contained in:
PT_Dreamer 2012-09-09 12:51:04 +01:00
commit 78a4241ba2
41 changed files with 129 additions and 45 deletions

View File

@ -43,6 +43,8 @@ namespace core {
LanguageStr=LanguageType().toShortString(Language); LanguageStr=LanguageType().toShortString(Language);
Cache::Instance(); Cache::Instance();
// OPMaps::MemoryCache();
} }

View File

@ -91,6 +91,7 @@ Size PlateCarreeProjection::GetTileMatrixMaxXY(const int &zoom)
Size PlateCarreeProjection::GetTileMatrixMinXY(const int &zoom) Size PlateCarreeProjection::GetTileMatrixMinXY(const int &zoom)
{ {
Q_UNUSED(zoom);
return Size(0, 0); return Size(0, 0);
} }
} }

View File

@ -90,6 +90,7 @@ Size PlateCarreeProjectionPergo::GetTileMatrixMaxXY(const int &zoom)
Size PlateCarreeProjectionPergo::GetTileMatrixMinXY(const int &zoom) Size PlateCarreeProjectionPergo::GetTileMatrixMinXY(const int &zoom)
{ {
Q_UNUSED(zoom)
return Size(0, 0); return Size(0, 0);
} }
} }

View File

@ -28,7 +28,7 @@
namespace mapcontrol namespace mapcontrol
{ {
HomeItem::HomeItem(MapGraphicItem* map,OPMapWidget* parent):safe(true),map(map),mapwidget(parent), HomeItem::HomeItem(MapGraphicItem* map,OPMapWidget* parent):safe(true),map(map),mapwidget(parent),
showsafearea(true),safearea(1000),altitude(0),isDragging(false),toggleRefresh(true) showsafearea(true),toggleRefresh(true),safearea(1000),altitude(0),isDragging(false)
{ {
pic.load(QString::fromUtf8(":/markers/images/home2.svg")); pic.load(QString::fromUtf8(":/markers/images/home2.svg"));
pic=pic.scaled(30,30,Qt::IgnoreAspectRatio); pic=pic.scaled(30,30,Qt::IgnoreAspectRatio);

View File

@ -34,7 +34,7 @@ namespace mapcontrol
{ {
OPMapWidget::OPMapWidget(QWidget *parent, Configuration *config):QGraphicsView(parent),configuration(config),UAV(0),GPS(0),Home(0) OPMapWidget::OPMapWidget(QWidget *parent, Configuration *config):QGraphicsView(parent),configuration(config),UAV(0),GPS(0),Home(0)
,followmouse(true),compass(0),showuav(false),showhome(false),showDiag(false),diagGraphItem(0),diagTimer(0),overlayOpacity(1) ,followmouse(true),compass(0),showuav(false),showhome(false),diagTimer(0),diagGraphItem(0),showDiag(false),overlayOpacity(1)
{ {
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
core=new internals::Core; core=new internals::Core;
@ -392,7 +392,6 @@ namespace mapcontrol
} }
void OPMapWidget::WPDeleteAll() void OPMapWidget::WPDeleteAll()
{ {
int x=0;
foreach(QGraphicsItem* i,map->childItems()) foreach(QGraphicsItem* i,map->childItems())
{ {
WayPointItem* w=qgraphicsitem_cast<WayPointItem*>(i); WayPointItem* w=qgraphicsitem_cast<WayPointItem*>(i);
@ -419,7 +418,9 @@ namespace mapcontrol
} }
} }
} }
return false;
} }
void OPMapWidget::deleteAllOverlays() void OPMapWidget::deleteAllOverlays()
{ {
foreach(QGraphicsItem* i,map->childItems()) foreach(QGraphicsItem* i,map->childItems())

View File

@ -37,6 +37,9 @@ TrailItem::TrailItem(internals::PointLatLng const& coord,int const& altitude, QB
void TrailItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) void TrailItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{ {
Q_UNUSED(option);
Q_UNUSED(widget);
painter->setBrush(m_brush); painter->setBrush(m_brush);
painter->drawEllipse(-2,-2,4,4); painter->drawEllipse(-2,-2,4,4);
} }

View File

@ -60,6 +60,9 @@ int WayPointCircle::type() const
void WayPointCircle::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) void WayPointCircle::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{ {
Q_UNUSED(option);
Q_UNUSED(widget);
QPointF p1; QPointF p1;
QPointF p2; QPointF p2;
p1=QPointF(line.p1().x(),line.p1().y()+line.length()); p1=QPointF(line.p1().x(),line.p1().y()+line.length());

View File

@ -75,6 +75,8 @@ QPainterPath WayPointLine::shape() const
} }
void WayPointLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) void WayPointLine::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget)
{ {
Q_UNUSED(option);
Q_UNUSED(widget);
QPen myPen = pen(); QPen myPen = pen();
myPen.setColor(myColor); myPen.setColor(myColor);

View File

@ -492,7 +492,7 @@ QString QScienceSpinBox::stripped(const QString &t, int *pos) const
} }
// reimplemented function, copied from qspinbox.cpp // reimplemented function, copied from qspinbox.cpp
static bool isIntermediateValueHelper(qint64 num, qint64 min, qint64 max, qint64 *match) bool QScienceSpinBox::isIntermediateValueHelper(qint64 num, qint64 min, qint64 max, qint64 *match)
{ {
QSBDEBUG("%lld %lld %lld", num, min, max); QSBDEBUG("%lld %lld %lld", num, min, max);

View File

@ -11,7 +11,6 @@
#include <QtCore/QDebug> #include <QtCore/QDebug>
#include <QtCore/QString> #include <QtCore/QString>
static bool isIntermediateValueHelper(qint64 num, qint64 minimum, qint64 maximum, qint64 *match = 0);
class QScienceSpinBox : public QDoubleSpinBox class QScienceSpinBox : public QDoubleSpinBox
{ {
@ -24,6 +23,7 @@ public:
QString textFromValue ( double value ) const; QString textFromValue ( double value ) const;
double valueFromText ( const QString & text ) const; double valueFromText ( const QString & text ) const;
static bool isIntermediateValueHelper(qint64 num, qint64 minimum, qint64 maximum, qint64 *match = 0);
private: private:
int dispDecimals; int dispDecimals;

View File

@ -116,6 +116,8 @@ void MyTabbedStackWidget::showWidget(int index)
void MyTabbedStackWidget::insertCornerWidget(int index, QWidget *widget) void MyTabbedStackWidget::insertCornerWidget(int index, QWidget *widget)
{ {
Q_UNUSED(index);
widget->hide(); widget->hide();
} }

View File

@ -206,6 +206,7 @@ ConfigCcpmWidget::~ConfigCcpmWidget()
void ConfigCcpmWidget::setupUI(QString frameType) void ConfigCcpmWidget::setupUI(QString frameType)
{ {
Q_UNUSED(frameType);
} }
void ConfigCcpmWidget::ResetActuators(GUIConfigDataUnion* configData) void ConfigCcpmWidget::ResetActuators(GUIConfigDataUnion* configData)

View File

@ -290,7 +290,7 @@ bool ConfigFixedWingWidget::setupFrameFixedWing(QString airframeType)
int channel; int channel;
//disable all //disable all
for (channel=0; channel<(int)VehicleConfig::CHANNEL_NUMELEM; channel++) for (channel=0; (unsigned int) channel < VehicleConfig::CHANNEL_NUMELEM; channel++)
{ {
setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED); setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED);
resetMixerVector(mixer, channel); resetMixerVector(mixer, channel);
@ -370,7 +370,7 @@ bool ConfigFixedWingWidget::setupFrameElevon(QString airframeType)
int channel; int channel;
double value; double value;
//disable all //disable all
for (channel=0; channel<(int)VehicleConfig::CHANNEL_NUMELEM; channel++) for (channel=0; (unsigned int) channel < VehicleConfig::CHANNEL_NUMELEM; channel++)
{ {
setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED); setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED);
resetMixerVector(mixer, channel); resetMixerVector(mixer, channel);
@ -448,7 +448,7 @@ bool ConfigFixedWingWidget::setupFrameVtail(QString airframeType)
int channel; int channel;
double value; double value;
//disable all //disable all
for (channel=0; channel<(int)VehicleConfig::CHANNEL_NUMELEM; channel++) for (channel=0; (unsigned int) channel < VehicleConfig::CHANNEL_NUMELEM; channel++)
{ {
setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED); setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED);
resetMixerVector(mixer, channel); resetMixerVector(mixer, channel);

View File

@ -230,7 +230,7 @@ QString ConfigGroundVehicleWidget::updateConfigObjectsFromWidgets()
void ConfigGroundVehicleWidget::refreshWidgetsValues(QString frameType) void ConfigGroundVehicleWidget::refreshWidgetsValues(QString frameType)
{ {
UAVDataObject* obj; UAVDataObject* obj;
UAVObjectField *field; // UAVObjectField *field;
GUIConfigDataUnion config = GetConfigData(); GUIConfigDataUnion config = GetConfigData();
@ -298,7 +298,7 @@ bool ConfigGroundVehicleWidget::setupGroundVehicleMotorcycle(QString airframeTyp
int channel; int channel;
//disable all //disable all
for (channel=0; channel<(int)VehicleConfig::CHANNEL_NUMELEM; channel++) { for (channel=0; (unsigned int) channel < VehicleConfig::CHANNEL_NUMELEM; channel++) {
setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED); setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED);
resetMixerVector(mixer, channel); resetMixerVector(mixer, channel);
} }
@ -355,7 +355,7 @@ bool ConfigGroundVehicleWidget::setupGroundVehicleDifferential(QString airframeT
int channel; int channel;
//disable all //disable all
for (channel=0; channel<(int)VehicleConfig::CHANNEL_NUMELEM; channel++) { for (channel=0; (unsigned int) channel < VehicleConfig::CHANNEL_NUMELEM; channel++) {
setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED); setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED);
resetMixerVector(mixer, channel); resetMixerVector(mixer, channel);
} }
@ -410,7 +410,7 @@ bool ConfigGroundVehicleWidget::setupGroundVehicleCar(QString airframeType)
int channel; int channel;
//disable all //disable all
for (channel=0; channel<(int)VehicleConfig::CHANNEL_NUMELEM; channel++) { for (channel=0; (unsigned int) channel < VehicleConfig::CHANNEL_NUMELEM; channel++) {
setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED); setMixerType(mixer,channel,VehicleConfig::MIXERTYPE_DISABLED);
resetMixerVector(mixer, channel); resetMixerVector(mixer, channel);
} }

View File

@ -218,6 +218,8 @@ void ConfigGadgetWidget::tabAboutToChange(int i,bool * proceed)
*/ */
void ConfigGadgetWidget::updatePipXStatus(UAVObject *object) void ConfigGadgetWidget::updatePipXStatus(UAVObject *object)
{ {
Q_UNUSED(object);
// Restart the disconnection timer. // Restart the disconnection timer.
pipxTimeout->start(5000); pipxTimeout->start(5000);
if (!pipxConnected) if (!pipxConnected)

View File

@ -266,6 +266,8 @@ void ConfigPipXtremeWidget::updateStatus(UAVObject *object)
*/ */
void ConfigPipXtremeWidget::updateSettings(UAVObject *object) void ConfigPipXtremeWidget::updateSettings(UAVObject *object)
{ {
Q_UNUSED(object);
if (!settingsUpdated) if (!settingsUpdated)
{ {
settingsUpdated = true; settingsUpdated = true;

View File

@ -68,8 +68,8 @@ public:
ConfigRevoWidget::ConfigRevoWidget(QWidget *parent) : ConfigRevoWidget::ConfigRevoWidget(QWidget *parent) :
ConfigTaskWidget(parent), ConfigTaskWidget(parent),
collectingData(false), collectingData(false),
position(-1), m_ui(new Ui_RevoSensorsWidget()),
m_ui(new Ui_RevoSensorsWidget()) position(-1)
{ {
m_ui->setupUi(this); m_ui->setupUi(this);

View File

@ -84,6 +84,8 @@ void ModeManager::init()
void ModeManager::addWidget(QWidget *widget) void ModeManager::addWidget(QWidget *widget)
{ {
Q_UNUSED(widget);
// We want the actionbar to stay on the bottom // We want the actionbar to stay on the bottom
// so m_modeStack->cornerWidgetCount() -1 inserts it at the position immediately above // so m_modeStack->cornerWidgetCount() -1 inserts it at the position immediately above
// the actionbar // the actionbar
@ -220,6 +222,8 @@ void ModeManager::aboutToRemoveObject(QObject *obj)
void ModeManager::addAction(Command *command, int priority, QMenu *menu) void ModeManager::addAction(Command *command, int priority, QMenu *menu)
{ {
Q_UNUSED(menu);
m_actions.insert(command, priority); m_actions.insert(command, priority);
// Count the number of commands with a higher priority // Count the number of commands with a higher priority

View File

@ -198,6 +198,8 @@ void GCSControlGadget::sticksChangedLocally(double leftX, double leftY, double r
void GCSControlGadget::gamepads(quint8 count) void GCSControlGadget::gamepads(quint8 count)
{ {
Q_UNUSED(count);
// sdlGamepad.setGamepad(0); // sdlGamepad.setGamepad(0);
// sdlGamepad.setTickRate(JOYSTICK_UPDATE_RATE); // sdlGamepad.setTickRate(JOYSTICK_UPDATE_RATE);
} }
@ -291,7 +293,7 @@ double GCSControlGadget::constrain(double value)
void GCSControlGadget::buttonState(ButtonNumber number, bool pressed) void GCSControlGadget::buttonState(ButtonNumber number, bool pressed)
{ {
int state; // int state;
if ((buttonSettings[number].ActionID>0)&&(buttonSettings[number].FunctionID>0)&&(pressed)) if ((buttonSettings[number].ActionID>0)&&(buttonSettings[number].FunctionID>0)&&(pressed))
{//this button is configured {//this button is configured
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();

View File

@ -71,6 +71,8 @@ void GCSControlGadgetOptionsPage::buttonState(ButtonNumber number, bool pressed)
void GCSControlGadgetOptionsPage::gamepads(quint8 count) void GCSControlGadgetOptionsPage::gamepads(quint8 count)
{ {
Q_UNUSED(count);
/*options_page->AvailableControllerList->clear(); /*options_page->AvailableControllerList->clear();
for (int i=0;i<count;i++) for (int i=0;i<count;i++)
{ {
@ -105,6 +107,8 @@ void GCSControlGadgetOptionsPage::axesValues(QListInt16 values)
//creates options page widget (uses the UI file) //creates options page widget (uses the UI file)
QWidget *GCSControlGadgetOptionsPage::createPage(QWidget *parent) QWidget *GCSControlGadgetOptionsPage::createPage(QWidget *parent)
{ {
Q_UNUSED(parent);
int i; int i;
options_page = new Ui::GCSControlGadgetOptionsPage(); options_page = new Ui::GCSControlGadgetOptionsPage();
QWidget *optionsPageWidget = new QWidget; QWidget *optionsPageWidget = new QWidget;

View File

@ -154,6 +154,8 @@ void GCSControlGadgetWidget::toggleArmed(int state)
void GCSControlGadgetWidget::mccChanged(UAVObject * obj) void GCSControlGadgetWidget::mccChanged(UAVObject * obj)
{ {
Q_UNUSED(obj);
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance(); ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
UAVObjectManager *objManager = pm->getObject<UAVObjectManager>(); UAVObjectManager *objManager = pm->getObject<UAVObjectManager>();
UAVDataObject* flightStatus = dynamic_cast<UAVDataObject*>( objManager->getObject(QString("FlightStatus")) ); UAVDataObject* flightStatus = dynamic_cast<UAVDataObject*>( objManager->getObject(QString("FlightStatus")) );

View File

@ -165,6 +165,8 @@ return s1.portName<s2.portName;
//creates options page widget (uses the UI file) //creates options page widget (uses the UI file)
QWidget *GpsDisplayGadgetOptionsPage::createPage(QWidget *parent) QWidget *GpsDisplayGadgetOptionsPage::createPage(QWidget *parent)
{ {
Q_UNUSED(parent);
options_page = new Ui::GpsDisplayGadgetOptionsPage(); options_page = new Ui::GpsDisplayGadgetOptionsPage();
QWidget *optionsPageWidget = new QWidget; QWidget *optionsPageWidget = new QWidget;
options_page->setupUi(optionsPageWidget); options_page->setupUi(optionsPageWidget);

View File

@ -301,7 +301,7 @@ void NMEAParser::nmeaProcessGPGSV(char *packet)
const int sentence_total = tokenslist.at(1).toInt(); // Number of sentences for full data const int sentence_total = tokenslist.at(1).toInt(); // Number of sentences for full data
const int sentence_index = tokenslist.at(2).toInt(); // sentence x of y const int sentence_index = tokenslist.at(2).toInt(); // sentence x of y
const int sat_count = tokenslist.at(3).toInt(); // Number of satellites in view // const int sat_count = tokenslist.at(3).toInt(); // Number of satellites in view
int sats = (tokenslist.size() - 4) /4; int sats = (tokenslist.size() - 4) /4;
for(int sat = 0; sat < sats; sat++) { for(int sat = 0; sat < sats; sat++) {

View File

@ -117,7 +117,7 @@ void TelemetryParser::updateSats( UAVObject* object1) {
UAVObjectField* azimuth = object1->getField(QString("Azimuth")); UAVObjectField* azimuth = object1->getField(QString("Azimuth"));
UAVObjectField* snr = object1->getField(QString("SNR")); UAVObjectField* snr = object1->getField(QString("SNR"));
for (int i=0;i< prn->getNumElements();i++) { for (unsigned int i=0;i< prn->getNumElements();i++) {
emit satellite(i,prn->getValue(i).toInt(),elevation->getValue(i).toInt(), emit satellite(i,prn->getValue(i).toInt(),elevation->getValue(i).toInt(),
azimuth->getValue(i).toInt(), snr->getValue(i).toInt()); azimuth->getValue(i).toInt(), snr->getValue(i).toInt());
} }

View File

@ -34,6 +34,8 @@ IPconnectionConfiguration::IPconnectionConfiguration(QString classId, QSettings*
m_Port(1000), m_Port(1000),
m_UseTCP(1) m_UseTCP(1)
{ {
Q_UNUSED(qSettings);
settings = Core::ICore::instance()->settings(); settings = Core::ICore::instance()->settings();
} }

View File

@ -73,7 +73,6 @@ void IPConnection::onOpenDevice(QString HostName, int Port, bool UseTCP)
{ {
QAbstractSocket *ipSocket; QAbstractSocket *ipSocket;
const int Timeout = 5 * 1000; const int Timeout = 5 * 1000;
int state;
ipConMutex.lock(); ipConMutex.lock();
if (UseTCP) { if (UseTCP) {
@ -177,6 +176,8 @@ QList <Core::IConnection::device> IPconnectionConnection::availableDevices()
QIODevice *IPconnectionConnection::openDevice(const QString &deviceName) QIODevice *IPconnectionConnection::openDevice(const QString &deviceName)
{ {
Q_UNUSED(deviceName);
QString HostName; QString HostName;
int Port; int Port;
bool UseTCP; bool UseTCP;
@ -211,6 +212,8 @@ QIODevice *IPconnectionConnection::openDevice(const QString &deviceName)
void IPconnectionConnection::closeDevice(const QString &deviceName) void IPconnectionConnection::closeDevice(const QString &deviceName)
{ {
Q_UNUSED(deviceName);
if (ipSocket){ if (ipSocket){
ipConMutex.lock(); ipConMutex.lock();
emit CloseSocket(ipSocket); emit CloseSocket(ipSocket);

View File

@ -169,6 +169,7 @@ bool flightDataModel::setColumnByIndex(pathPlanData *row,const int index,const
default: default:
return false; return false;
} }
return false;
} }
QVariant flightDataModel::getColumnByIndex(const pathPlanData *row,const int index) const QVariant flightDataModel::getColumnByIndex(const pathPlanData *row,const int index) const
{ {

View File

@ -60,6 +60,8 @@ void modelMapProxy::WPValuesChanged(WayPointItem * wp)
void modelMapProxy::currentRowChanged(QModelIndex current, QModelIndex previous) void modelMapProxy::currentRowChanged(QModelIndex current, QModelIndex previous)
{ {
Q_UNUSED(previous);
QList<WayPointItem*> list; QList<WayPointItem*> list;
WayPointItem * wp=findWayPointNumber(current.row()); WayPointItem * wp=findWayPointNumber(current.row());
if(!wp) if(!wp)
@ -202,6 +204,8 @@ WayPointItem * modelMapProxy::findWayPointNumber(int number)
void modelMapProxy::rowsRemoved(const QModelIndex &parent, int first, int last) void modelMapProxy::rowsRemoved(const QModelIndex &parent, int first, int last)
{ {
Q_UNUSED(parent);
for(int x=last;x>first-1;x--) for(int x=last;x>first-1;x--)
{ {
myMap->WPDelete(x); myMap->WPDelete(x);
@ -211,6 +215,8 @@ void modelMapProxy::rowsRemoved(const QModelIndex &parent, int first, int last)
void modelMapProxy::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) void modelMapProxy::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight)
{ {
Q_UNUSED(bottomRight);
WayPointItem * item=findWayPointNumber(topLeft.row()); WayPointItem * item=findWayPointNumber(topLeft.row());
if(!item) if(!item)
return; return;

View File

@ -287,5 +287,7 @@ void opmap_edit_waypoint_dialog::enableEditWidgets(bool value)
void opmap_edit_waypoint_dialog::currentRowChanged(QModelIndex current, QModelIndex previous) void opmap_edit_waypoint_dialog::currentRowChanged(QModelIndex current, QModelIndex previous)
{ {
Q_UNUSED(previous);
mapper->setCurrentIndex(current.row()); mapper->setCurrentIndex(current.row());
} }

View File

@ -1773,7 +1773,7 @@ void OPMapGadgetWidget::onAddWayPointAct_triggered(internals::PointLatLng coord)
if (m_map_mode != Normal_MapMode) if (m_map_mode != Normal_MapMode)
return; return;
float alt=15;
mapProxy->createWayPoint(coord); mapProxy->createWayPoint(coord);
} }

View File

@ -46,6 +46,7 @@ PFDGadgetOptionsPage::PFDGadgetOptionsPage(PFDGadgetConfiguration *config, QObje
//creates options page widget (uses the UI file) //creates options page widget (uses the UI file)
QWidget *PFDGadgetOptionsPage::createPage(QWidget *parent) QWidget *PFDGadgetOptionsPage::createPage(QWidget *parent)
{ {
Q_UNUSED(parent);
options_page = new Ui::PFDGadgetOptionsPage(); options_page = new Ui::PFDGadgetOptionsPage();
//main widget //main widget

View File

@ -46,6 +46,7 @@ QmlViewGadgetOptionsPage::QmlViewGadgetOptionsPage(QmlViewGadgetConfiguration *c
//creates options page widget (uses the UI file) //creates options page widget (uses the UI file)
QWidget *QmlViewGadgetOptionsPage::createPage(QWidget *parent) QWidget *QmlViewGadgetOptionsPage::createPage(QWidget *parent)
{ {
Q_UNUSED(parent);
options_page = new Ui::QmlViewGadgetOptionsPage(); options_page = new Ui::QmlViewGadgetOptionsPage();
//main widget //main widget

View File

@ -90,7 +90,7 @@ static void hid_close(hid_t *);
static void attach_callback(void *, IOReturn, void *, IOHIDDeviceRef); static void attach_callback(void *, IOReturn, void *, IOHIDDeviceRef);
static void detach_callback(void *, IOReturn, void *hid_mgr, IOHIDDeviceRef dev); static void detach_callback(void *, IOReturn, void *hid_mgr, IOHIDDeviceRef dev);
static void input_callback(void *, IOReturn, void *, IOHIDReportType, uint32_t, uint8_t *, CFIndex); static void input_callback(void *, IOReturn, void *, IOHIDReportType, uint32_t, uint8_t *, CFIndex);
static void output_callback(hid_t *context, IOReturn ret, void *sender, IOHIDReportType type, uint32_t id, uint8_t *data, CFIndex len); //static void output_callback(hid_t *context, IOReturn ret, void *sender, IOHIDReportType type, uint32_t id, uint8_t *data, CFIndex len);
static void timeout_callback(CFRunLoopTimerRef, void *); static void timeout_callback(CFRunLoopTimerRef, void *);
@ -173,7 +173,7 @@ int pjrc_rawhid::open(int max, int vid, int pid, int usage_page, int usage)
IOHIDManagerRegisterDeviceRemovalCallback(hid_manager, detach_callback, NULL); IOHIDManagerRegisterDeviceRemovalCallback(hid_manager, detach_callback, NULL);
ret = IOHIDManagerOpen(hid_manager, kIOHIDOptionsTypeNone); ret = IOHIDManagerOpen(hid_manager, kIOHIDOptionsTypeNone);
if (ret != kIOReturnSuccess) { if (ret != kIOReturnSuccess) {
printf("Could not start IOHIDManager"); qDebug()<< "Could not start IOHIDManager";
IOHIDManagerUnscheduleFromRunLoop(hid_manager, IOHIDManagerUnscheduleFromRunLoop(hid_manager,
CFRunLoopGetCurrent(), kCFRunLoopDefaultMode); CFRunLoopGetCurrent(), kCFRunLoopDefaultMode);
CFRelease(hid_manager); CFRelease(hid_manager);
@ -181,7 +181,7 @@ int pjrc_rawhid::open(int max, int vid, int pid, int usage_page, int usage)
} }
// Set the run loop reference: // Set the run loop reference:
the_correct_runloop = CFRunLoopGetCurrent(); the_correct_runloop = CFRunLoopGetCurrent();
printf("run loop\n"); qDebug() << "run loop";
// let it do the callback for all devices // let it do the callback for all devices
while (CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, true) == kCFRunLoopRunHandledSource) ; while (CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, true) == kCFRunLoopRunHandledSource) ;
// count up how many were added by the callback // count up how many were added by the callback
@ -240,7 +240,7 @@ int pjrc_rawhid::receive(int num, void *buf, int len, int timeout)
break; break;
} }
if (!hid->open) { if (!hid->open) {
printf("pjrc_rawhid_recv, device not open\n"); qDebug() << "pjrc_rawhid_recv, device not open\n";
ret = -1; ret = -1;
break; break;
} }
@ -263,6 +263,8 @@ int pjrc_rawhid::receive(int num, void *buf, int len, int timeout)
// //
int pjrc_rawhid::send(int num, void *buf, int len, int timeout) int pjrc_rawhid::send(int num, void *buf, int len, int timeout)
{ {
Q_UNUSED(timeout);
hid_t *hid; hid_t *hid;
int result=-100; int result=-100;
@ -287,6 +289,7 @@ int pjrc_rawhid::send(int num, void *buf, int len, int timeout)
#endif #endif
#if 0 #if 0
#define TIMEOUT_FIXED
// No matter what I tried this never actually sends an output // No matter what I tried this never actually sends an output
// report and output_callback never gets called. Why?? // report and output_callback never gets called. Why??
// Did I miss something? This is exactly the same params as // Did I miss something? This is exactly the same params as
@ -315,7 +318,7 @@ int pjrc_rawhid::send(int num, void *buf, int len, int timeout)
QString pjrc_rawhid::getserial(int num) { QString pjrc_rawhid::getserial(int num) {
hid_t *hid; hid_t *hid;
char buf[128]; // char buf[128];
hid = get_hid(num); hid = get_hid(num);
@ -358,6 +361,9 @@ void pjrc_rawhid::close(int num)
// //
static void input_callback(void *context, IOReturn ret, void *sender, IOHIDReportType type, uint32_t id, uint8_t *data, CFIndex len) static void input_callback(void *context, IOReturn ret, void *sender, IOHIDReportType type, uint32_t id, uint8_t *data, CFIndex len)
{ {
Q_UNUSED(type);
Q_UNUSED(id);
buffer_t *n; buffer_t *n;
hid_t *hid; hid_t *hid;
@ -365,7 +371,7 @@ static void input_callback(void *context, IOReturn ret, void *sender, IOHIDRepor
if (ret != kIOReturnSuccess || len < 1) return; if (ret != kIOReturnSuccess || len < 1) return;
hid = (hid_t*)context; hid = (hid_t*)context;
if (!hid || hid->ref != sender) return; if (!hid || hid->ref != sender) return;
printf("Processing packet"); qDebug() << "Processing packet";
n = (buffer_t *)malloc(sizeof(buffer_t)); n = (buffer_t *)malloc(sizeof(buffer_t));
if (!n) return; if (!n) return;
if (len > BUFFER_SIZE) len = BUFFER_SIZE; if (len > BUFFER_SIZE) len = BUFFER_SIZE;
@ -385,6 +391,8 @@ static void input_callback(void *context, IOReturn ret, void *sender, IOHIDRepor
static void timeout_callback(CFRunLoopTimerRef timer, void *info) static void timeout_callback(CFRunLoopTimerRef timer, void *info)
{ {
Q_UNUSED(timer);
//qDebug("timeout_callback\n"); //qDebug("timeout_callback\n");
*(int *)info = 1; *(int *)info = 1;
//qDebug() << "Stop CFRunLoop from timeout_callback" << CFRunLoopGetCurrent(); //qDebug() << "Stop CFRunLoop from timeout_callback" << CFRunLoopGetCurrent();
@ -440,9 +448,13 @@ static void hid_close(hid_t *hid)
static void detach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev) static void detach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev)
{ {
Q_UNUSED(context);
Q_UNUSED(r);
Q_UNUSED(hid_mgr);
hid_t *p; hid_t *p;
printf("detach callback\n"); qDebug()<< "detach callback";
for (p = first_hid; p; p = p->next) { for (p = first_hid; p; p = p->next) {
if (p->ref == dev) { if (p->ref == dev) {
p->open = 0; p->open = 0;
@ -454,9 +466,13 @@ static void detach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDevic
static void attach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev) static void attach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev)
{ {
Q_UNUSED(context);
Q_UNUSED(r);
Q_UNUSED(hid_mgr);
struct hid_struct *h; struct hid_struct *h;
printf("attach callback\n"); qDebug() << "attach callback";
if (IOHIDDeviceOpen(dev, kIOHIDOptionsTypeNone) != kIOReturnSuccess) return; if (IOHIDDeviceOpen(dev, kIOHIDOptionsTypeNone) != kIOReturnSuccess) return;
h = (hid_t *)malloc(sizeof(hid_t)); h = (hid_t *)malloc(sizeof(hid_t));
if (!h) return; if (!h) return;
@ -468,9 +484,16 @@ static void attach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDevic
add_hid(h); add_hid(h);
} }
#ifdef TIMEOUT_FIXED
static void output_callback(hid_t *context, IOReturn ret, void *sender, IOHIDReportType type, uint32_t id, uint8_t *data, CFIndex len) static void output_callback(hid_t *context, IOReturn ret, void *sender, IOHIDReportType type, uint32_t id, uint8_t *data, CFIndex len)
{ {
printf("output_callback, r=%d\n", ret); Q_UNUSED(sender);
Q_UNUSED(type);
Q_UNUSED(id);
Q_UNUSED(data);
qDebug()<< QString("output_callback, r=%1").arg(ret);
// printf("output_callback, r=%d\n", ret);
if (ret == kIOReturnSuccess) { if (ret == kIOReturnSuccess) {
*(int *)context = len; *(int *)context = len;
} else { } else {
@ -479,4 +502,4 @@ static void output_callback(hid_t *context, IOReturn ret, void *sender, IOHIDRep
} }
CFRunLoopStop(CFRunLoopGetCurrent()); CFRunLoopStop(CFRunLoopGetCurrent());
} }
#endif

View File

@ -45,8 +45,6 @@ static bool HID_GetStrProperty(IOHIDDeviceRef dev, CFStringRef property, QString
*/ */
USBMonitor::USBMonitor(QObject *parent): QThread(parent) { USBMonitor::USBMonitor(QObject *parent): QThread(parent) {
hid_manager=NULL; hid_manager=NULL;
CFMutableDictionaryRef dict;
CFNumberRef num;
IOReturn ret; IOReturn ret;
m_instance = this; m_instance = this;
@ -117,6 +115,10 @@ void USBMonitor::removeDevice(IOHIDDeviceRef dev) {
*/ */
void USBMonitor::detach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev) void USBMonitor::detach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev)
{ {
Q_UNUSED(context);
Q_UNUSED(r);
Q_UNUSED(hid_mgr);
qDebug() << "USBMonitor: Device detached event"; qDebug() << "USBMonitor: Device detached event";
instance()->removeDevice(dev); instance()->removeDevice(dev);
} }
@ -129,9 +131,12 @@ void USBMonitor::addDevice(USBPortInfo info) {
void USBMonitor::attach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev) void USBMonitor::attach_callback(void *context, IOReturn r, void *hid_mgr, IOHIDDeviceRef dev)
{ {
Q_UNUSED(context);
Q_UNUSED(r);
Q_UNUSED(hid_mgr);
bool got_properties = true; bool got_properties = true;
CFTypeRef prop;
USBPortInfo deviceInfo; USBPortInfo deviceInfo;
deviceInfo.dev_handle = dev; deviceInfo.dev_handle = dev;

View File

@ -38,6 +38,8 @@ SerialPluginConfiguration::SerialPluginConfiguration(QString classId, QSettings*
IUAVGadgetConfiguration(classId, parent), IUAVGadgetConfiguration(classId, parent),
m_speed("57600") m_speed("57600")
{ {
Q_UNUSED(qSettings);
settings = Core::ICore::instance()->settings(); settings = Core::ICore::instance()->settings();
} }

View File

@ -268,7 +268,7 @@ QByteArray UAVObjectUtilManager::getBoardCPUSerial()
QByteArray cpuSerial; QByteArray cpuSerial;
FirmwareIAPObj::DataFields firmwareIapData = getFirmwareIap(); FirmwareIAPObj::DataFields firmwareIapData = getFirmwareIap();
for (int i = 0; i < FirmwareIAPObj::CPUSERIAL_NUMELEM; i++) for (unsigned int i = 0; i < FirmwareIAPObj::CPUSERIAL_NUMELEM; i++)
cpuSerial.append(firmwareIapData.CPUSerial[i]); cpuSerial.append(firmwareIapData.CPUSerial[i]);
return cpuSerial; return cpuSerial;
@ -288,7 +288,7 @@ QByteArray UAVObjectUtilManager::getBoardDescription()
QByteArray ret; QByteArray ret;
FirmwareIAPObj::DataFields firmwareIapData = getFirmwareIap(); FirmwareIAPObj::DataFields firmwareIapData = getFirmwareIap();
for (int i = 0; i < FirmwareIAPObj::DESCRIPTION_NUMELEM; i++) for (unsigned int i = 0; i < FirmwareIAPObj::DESCRIPTION_NUMELEM; i++)
ret.append(firmwareIapData.Description[i]); ret.append(firmwareIapData.Description[i]);
return ret; return ret;

View File

@ -32,7 +32,7 @@
/** /**
* Constructor * Constructor
*/ */
ConfigTaskWidget::ConfigTaskWidget(QWidget *parent) : QWidget(parent),isConnected(false),smartsave(NULL),dirty(false),outOfLimitsStyle("background-color: rgb(255, 0, 0);"),timeOut(NULL),allowWidgetUpdates(true) ConfigTaskWidget::ConfigTaskWidget(QWidget *parent) : QWidget(parent),isConnected(false),allowWidgetUpdates(true),smartsave(NULL),dirty(false),outOfLimitsStyle("background-color: rgb(255, 0, 0);"),timeOut(NULL)
{ {
pm = ExtensionSystem::PluginManager::instance(); pm = ExtensionSystem::PluginManager::instance();
objManager = pm->getObject<UAVObjectManager>(); objManager = pm->getObject<UAVObjectManager>();

View File

@ -495,7 +495,7 @@ bool UAVTalk::processInputByte(quint8 rxbyte)
default: default:
rxState = STATE_SYNC; rxState = STATE_SYNC;
stats.rxErrors++; stats.rxErrors++;
UAVTALK_QXTLOG_DEBUG("UAVTalk: ???->Sync"); UAVTALK_QXTLOG_DEBUG("UAVTalk: \?\?\?->Sync"); //Use the escape character for '?' so that the tripgraph isn't triggered.
} }
// Done // Done

View File

@ -43,7 +43,7 @@ public:
uint8_t maxRetryCount; // max. times to try to transmit the 'send' packet uint8_t maxRetryCount; // max. times to try to transmit the 'send' packet
uint16_t max_retry; // Maximum number of retrys for a single transmit. uint16_t max_retry; // Maximum number of retrys for a single transmit.
int32_t timeoutLen; // how long to wait for each retry to succeed int32_t timeoutLen; // how long to wait for each retry to succeed
int32_t timeout; // current timeout. when 'time' reaches this point we have timed out uint32_t timeout; // current timeout. when 'time' reaches this point we have timed out
uint8_t txSeqNo; // current 'send' packet sequence number uint8_t txSeqNo; // current 'send' packet sequence number
uint16_t rxBufPos; // current buffer position in the receive packet uint16_t rxBufPos; // current buffer position in the receive packet
uint16_t rxBufLen; // number of 'data' bytes in the buffer uint16_t rxBufLen; // number of 'data' bytes in the buffer

View File

@ -802,6 +802,8 @@ qssp::qssp(port * info,bool debug):debug(debug)
} }
void qssp::pfCallBack( uint8_t * buf, uint16_t size) void qssp::pfCallBack( uint8_t * buf, uint16_t size)
{ {
Q_UNUSED(size);
if (debug) if (debug)
qDebug()<<"receive callback"<<buf[0]<<buf[1]<<buf[2]<<buf[3]<<buf[4]; qDebug()<<"receive callback"<<buf[0]<<buf[1]<<buf[2]<<buf[3]<<buf[4];
} }

View File

@ -47,6 +47,8 @@ UploaderGadgetOptionsPage::UploaderGadgetOptionsPage(UploaderGadgetConfiguration
//creates options page widget //creates options page widget
QWidget *UploaderGadgetOptionsPage::createPage(QWidget *parent) QWidget *UploaderGadgetOptionsPage::createPage(QWidget *parent)
{ {
Q_UNUSED(parent);
//main widget //main widget
QWidget *widget = new QWidget; QWidget *widget = new QWidget;