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
69d3b392
Commit
69d3b392
authored
Dec 30, 2016
by
Don Gagne
Committed by
GitHub
Dec 30, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4368 from DonLakeFlyer/PX4MockLink
Update PX4 MockLink params
parents
d663c932
3499594f
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
358 additions
and
558 deletions
+358
-558
FactSystemTest.qml
src/FactSystem/FactSystemTest.qml
+1
-1
FactSystemTestBase.cc
src/FactSystem/FactSystemTestBase.cc
+2
-2
PX4MockLink.params
src/comm/PX4MockLink.params
+355
-555
No files found.
src/FactSystem/FactSystemTest.qml
View file @
69d3b392
...
...
@@ -32,7 +32,7 @@ FactPanel {
TextInput
{
text
:
fact2
.
value
property
Fact
fact2
:
controller
.
getParameterFact
(
50
,
"
RC_MAP_THROTTLE
"
)
property
Fact
fact2
:
controller
.
getParameterFact
(
1
,
"
RC_MAP_THROTTLE
"
)
onAccepted
:
fact2
.
value
=
text
}
...
...
src/FactSystem/FactSystemTestBase.cc
View file @
69d3b392
...
...
@@ -58,8 +58,8 @@ void FactSystemTestBase::_parameter_default_component_id_test(void)
void
FactSystemTestBase
::
_parameter_specific_component_id_test
(
void
)
{
QVERIFY
(
_vehicle
->
parameterManager
()
->
parameterExists
(
50
,
"RC_MAP_THROTTLE"
));
Fact
*
fact
=
_vehicle
->
parameterManager
()
->
getParameter
(
50
,
"RC_MAP_THROTTLE"
);
QVERIFY
(
_vehicle
->
parameterManager
()
->
parameterExists
(
1
,
"RC_MAP_THROTTLE"
));
Fact
*
fact
=
_vehicle
->
parameterManager
()
->
getParameter
(
1
,
"RC_MAP_THROTTLE"
);
QVERIFY
(
fact
!=
NULL
);
QVariant
factValue
=
fact
->
rawValue
();
QCOMPARE
(
factValue
.
isValid
(),
true
);
...
...
src/comm/PX4MockLink.params
View file @
69d3b392
This diff is collapsed.
Click to expand it.
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