Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
93627497
Commit
93627497
authored
Sep 21, 2017
by
Gus Grubba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updating MAVLink
Fix merge issues
parent
91673ba1
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
7 deletions
+17
-7
v2.0
libs/mavlink/include/mavlink/v2.0
+1
-1
APMSensorsComponentController.cc
src/AutoPilotPlugins/APM/APMSensorsComponentController.cc
+4
-1
APMParameterMetaData.cc
src/FirmwarePlugin/APM/APMParameterMetaData.cc
+8
-2
Vehicle.h
src/Vehicle/Vehicle.h
+0
-2
MockLink.cc
src/comm/MockLink.cc
+4
-1
No files found.
v2.0
@
5be9f5bf
Subproject commit
6bbc8a51d8f37537732d3f5170093d49e64c6f4b
Subproject commit
5be9f5bf6002d58199cafafb5d416929fb8d8bcd
src/AutoPilotPlugins/APM/APMSensorsComponentController.cc
View file @
93627497
...
...
@@ -588,7 +588,10 @@ void APMSensorsComponentController::nextClicked(void)
&
msg
,
0
,
// command
1
,
// result
0
);
// progress
0
,
// progress
0
,
// result_param2
0
,
// target_system
0
);
// target_component
_vehicle
->
sendMessageOnLink
(
_vehicle
->
priorityLink
(),
msg
);
...
...
src/FirmwarePlugin/APM/APMParameterMetaData.cc
View file @
93627497
...
...
@@ -18,6 +18,8 @@
#include <QDebug>
#include <QStack>
static
const
char
*
kInvalidConverstion
=
"Internal Error: No support for string parameters"
;
QGC_LOGGING_CATEGORY
(
APMParameterMetaDataLog
,
"APMParameterMetaDataLog"
)
QGC_LOGGING_CATEGORY
(
APMParameterMetaDataVerboseLog
,
"APMParameterMetaDataVerboseLog"
)
...
...
@@ -57,13 +59,17 @@ QVariant APMParameterMetaData::_stringToTypedVariant(const QString& string,
convertTo
=
QVariant
::
Double
;
break
;
case
FactMetaData
:
:
valueTypeString
:
qWarning
()
<<
"Internal Error: No support for string parameters"
;
qWarning
()
<<
kInvalidConverstion
;
convertTo
=
QVariant
::
String
;
break
;
case
FactMetaData
:
:
valueTypeBool
:
qWarning
()
<<
"Internal Error: No support for string parameters"
;
qWarning
()
<<
kInvalidConverstion
;
convertTo
=
QVariant
::
Bool
;
break
;
case
FactMetaData
:
:
valueTypeCustom
:
qWarning
()
<<
kInvalidConverstion
;
convertTo
=
QVariant
::
ByteArray
;
break
;
}
*
convertOk
=
var
.
convert
(
convertTo
);
...
...
src/Vehicle/Vehicle.h
View file @
93627497
...
...
@@ -692,8 +692,6 @@ public:
uint64_t
capabilityBits
(
void
)
const
{
return
_capabilityBits
;
}
// Change signalled by capabilityBitsChanged
QGCCameraManager
*
dynamicCameras
()
{
return
_cameras
;
}
bool
capabilitiesKnown
(
void
)
const
{
return
_vehicleCapabilitiesKnown
;
}
/// @true: When flying a mission the vehicle is always facing towards the next waypoint
bool
vehicleYawsToNextWaypointInMission
(
void
)
const
;
...
...
src/comm/MockLink.cc
View file @
93627497
...
...
@@ -870,7 +870,10 @@ void MockLink::_handleCommandLong(const mavlink_message_t& msg)
&
commandAck
,
request
.
command
,
commandResult
,
0
);
0
,
// progress
0
,
// result_param2
0
,
// target_system
0
);
// target_component
respondWithMavlinkMessage
(
commandAck
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment