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
d955b7dc
Commit
d955b7dc
authored
Feb 16, 2019
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Stable_V3.5' of
https://github.com/mavlink/qgroundcontrol
into StableMerge
parents
efd77cee
2317cc38
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
.appveyor.yml
.appveyor.yml
+1
-1
LinkManager.cc
src/comm/LinkManager.cc
+1
-1
No files found.
.appveyor.yml
View file @
d955b7dc
...
...
@@ -61,7 +61,7 @@ for:
-
branches
:
only
:
-
Stable_V3.
4
-
Stable_V3.
5
artifacts
:
-
path
:
QGroundControl-installer.exe
name
:
qgcinstaller
...
...
src/comm/LinkManager.cc
View file @
d955b7dc
...
...
@@ -994,7 +994,7 @@ void LinkManager::startAutoConnectedLinks(void)
int
LinkManager
::
_reserveMavlinkChannel
(
void
)
{
// Find a mavlink channel to use for this link, Channel 0 is reserved for internal use.
for
(
uint8_t
mavlinkChannel
=
1
;
mavlinkChannel
<
32
;
mavlinkChannel
++
)
{
for
(
uint8_t
mavlinkChannel
=
1
;
mavlinkChannel
<
MAVLINK_COMM_NUM_BUFFERS
;
mavlinkChannel
++
)
{
if
(
!
(
_mavlinkChannelsUsedBitMask
&
1
<<
mavlinkChannel
))
{
mavlink_reset_channel_status
(
mavlinkChannel
);
// Start the channel on Mav 1 protocol
...
...
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