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
4533eba2
Commit
4533eba2
authored
Jun 14, 2014
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo in FG protocol
parent
dda783ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
QGCFlightGearLink.cc
src/comm/QGCFlightGearLink.cc
+3
-3
No files found.
src/comm/QGCFlightGearLink.cc
View file @
4533eba2
...
...
@@ -125,7 +125,7 @@ void QGCFlightGearLink::run()
#endif
#ifdef DEBUG_FLIGHTGEAR_CONNECT
qDebug
()
<<
"
Starting FlightGear"
<<
_fgProcessWorkingDirPath
<<
_fgProcessName
<<
_fgArgList
;
qDebug
()
<<
"
\n
Starting FlightGear"
<<
_fgProcessWorkingDirPath
<<
_fgProcessName
<<
_fgArgList
<<
"
\n
"
;
#endif
_fgProcess
->
start
(
_fgProcessName
,
_fgArgList
);
...
...
@@ -741,7 +741,7 @@ bool QGCFlightGearLink::connectSimulation()
// Add the user specified arguments to our argument list
#ifdef DEBUG_FLIGHTGEAR_CONNECT
qDebug
()
<<
"
Split arguments"
<<
uiArgList
;
qDebug
()
<<
"
\n
Split arguments"
<<
uiArgList
<<
"
\n
"
;
#endif
_fgArgList
+=
uiArgList
;
...
...
@@ -820,7 +820,7 @@ bool QGCFlightGearLink::connectSimulation()
// Setup protocol we will be using to communicate with FlightGear
QString
fgProtocol
(
mav
->
getSystemType
()
==
MAV_TYPE_QUADROTOR
?
"qgroundcontrol-quadrotor"
:
"qgroundcontrol-fixed-wing"
);
QString
fgProtocolArg
(
"--generic=
_udpCommS
ocket,%1,300,127.0.0.1,%2,udp,%3"
);
QString
fgProtocolArg
(
"--generic=
s
ocket,%1,300,127.0.0.1,%2,udp,%3"
);
_fgArgList
<<
fgProtocolArg
.
arg
(
"out"
).
arg
(
port
).
arg
(
fgProtocol
);
_fgArgList
<<
fgProtocolArg
.
arg
(
"in"
).
arg
(
currentPort
).
arg
(
fgProtocol
);
...
...
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