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
d84e1d8c
Commit
d84e1d8c
authored
Dec 19, 2010
by
pixhawk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simulating swarms
parent
a43f2650
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
3 deletions
+36
-3
qgroundcontrol.pro
qgroundcontrol.pro
+4
-2
MAVLinkSimulationLink.h
src/comm/MAVLinkSimulationLink.h
+1
-1
MAVLinkSwarmSimulationLink.cc
src/comm/MAVLinkSwarmSimulationLink.cc
+12
-0
MAVLinkSwarmSimulationLink.h
src/comm/MAVLinkSwarmSimulationLink.h
+19
-0
No files found.
qgroundcontrol.pro
View file @
d84e1d8c
...
@@ -250,7 +250,8 @@ HEADERS += src/MG.h \
...
@@ -250,7 +250,8 @@ HEADERS += src/MG.h \
src
/
ui
/
SlugsPIDControl
.
h
\
src
/
ui
/
SlugsPIDControl
.
h
\
src
/
ui
/
SlugsVideoCamControl
.
h
\
src
/
ui
/
SlugsVideoCamControl
.
h
\
src
/
ui
/
SlugsPadCameraControl
.
h
\
src
/
ui
/
SlugsPadCameraControl
.
h
\
src
/
ui
/
QGCMainWindowAPConfigurator
.
h
src
/
ui
/
QGCMainWindowAPConfigurator
.
h
\
src
/
comm
/
MAVLinkSwarmSimulationLink
.
h
contains
(
DEPENDENCIES_PRESENT
,
osg
)
{
contains
(
DEPENDENCIES_PRESENT
,
osg
)
{
message
(
"Including headers for OpenSceneGraph"
)
message
(
"Including headers for OpenSceneGraph"
)
...
@@ -361,7 +362,8 @@ SOURCES += src/main.cc \
...
@@ -361,7 +362,8 @@ SOURCES += src/main.cc \
src
/
ui
/
SlugsPIDControl
.
cpp
\
src
/
ui
/
SlugsPIDControl
.
cpp
\
src
/
ui
/
SlugsVideoCamControl
.
cpp
\
src
/
ui
/
SlugsVideoCamControl
.
cpp
\
src
/
ui
/
SlugsPadCameraControl
.
cpp
\
src
/
ui
/
SlugsPadCameraControl
.
cpp
\
src
/
ui
/
QGCMainWindowAPConfigurator
.
cc
src
/
ui
/
QGCMainWindowAPConfigurator
.
cc
\
src
/
comm
/
MAVLinkSwarmSimulationLink
.
cc
contains
(
DEPENDENCIES_PRESENT
,
osg
)
{
contains
(
DEPENDENCIES_PRESENT
,
osg
)
{
message
(
"Including sources for OpenSceneGraph"
)
message
(
"Including sources for OpenSceneGraph"
)
...
...
src/comm/MAVLinkSimulationLink.h
View file @
d84e1d8c
...
@@ -85,7 +85,7 @@ public:
...
@@ -85,7 +85,7 @@ public:
public
slots
:
public
slots
:
void
writeBytes
(
const
char
*
data
,
qint64
size
);
void
writeBytes
(
const
char
*
data
,
qint64
size
);
void
readBytes
();
void
readBytes
();
void
mainloop
();
v
irtual
v
oid
mainloop
();
bool
connectLink
(
bool
connect
);
bool
connectLink
(
bool
connect
);
...
...
src/comm/MAVLinkSwarmSimulationLink.cc
0 → 100644
View file @
d84e1d8c
#include "MAVLinkSwarmSimulationLink.h"
MAVLinkSwarmSimulationLink
::
MAVLinkSwarmSimulationLink
(
QObject
*
parent
)
:
MAVLinkSimulationLink
()
{
}
void
MAVLinkSwarmSimulationLink
::
mainloop
()
{
}
src/comm/MAVLinkSwarmSimulationLink.h
0 → 100644
View file @
d84e1d8c
#ifndef MAVLINKSWARMSIMULATIONLINK_H
#define MAVLINKSWARMSIMULATIONLINK_H
#include "MAVLinkSimulationLink.h"
class
MAVLinkSwarmSimulationLink
:
public
MAVLinkSimulationLink
{
Q_OBJECT
public:
explicit
MAVLinkSwarmSimulationLink
(
QObject
*
parent
=
0
);
signals:
public
slots
:
void
mainloop
();
};
#endif // MAVLINKSWARMSIMULATIONLINK_H
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