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
c7a3dd87
Commit
c7a3dd87
authored
Feb 01, 2020
by
Gus Grubba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead interface/file.
parent
21c62529
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
59 deletions
+0
-59
qgroundcontrol.pro
qgroundcontrol.pro
+0
-1
LinkManager.h
src/comm/LinkManager.h
+0
-1
ProtocolInterface.h
src/comm/ProtocolInterface.h
+0
-56
UASInterface.h
src/uas/UASInterface.h
+0
-1
No files found.
qgroundcontrol.pro
View file @
c7a3dd87
...
...
@@ -691,7 +691,6 @@ HEADERS += \
src
/
comm
/
LinkManager
.
h
\
src
/
comm
/
LogReplayLink
.
h
\
src
/
comm
/
MAVLinkProtocol
.
h
\
src
/
comm
/
ProtocolInterface
.
h
\
src
/
comm
/
QGCMAVLink
.
h
\
src
/
comm
/
TCPLink
.
h
\
src
/
comm
/
UDPLink
.
h
\
...
...
src/comm/LinkManager.h
View file @
c7a3dd87
...
...
@@ -21,7 +21,6 @@
#include "LinkInterface.h"
#include "QGCLoggingCategory.h"
#include "QGCToolbox.h"
#include "ProtocolInterface.h"
#include "MAVLinkProtocol.h"
#if !defined(__mobile__)
#include "LogReplayLink.h"
...
...
src/comm/ProtocolInterface.h
deleted
100644 → 0
View file @
21c62529
/****************************************************************************
*
* (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
/**
* @file
* @brief Interface class for protocols
*
* @author Lorenz Meier <mavteam@student.ethz.ch>
*
*/
#pragma once
#include <QThread>
#include <QString>
#include <QByteArray>
#include "LinkInterface.h"
/**
* @brief Interface for all protocols.
*
* This class defines the interface for
* communication packets transported by the LinkManager.
*
* @see LinkManager.
*
**/
class
ProtocolInterface
:
public
QThread
{
Q_OBJECT
public:
virtual
~
ProtocolInterface
()
{}
virtual
QString
getName
()
=
0
;
/**
* Reset the received, error, and dropped counts for the given link. Useful for
* when reconnecting a link.
* @param link The link to reset metadata for.
*/
virtual
void
resetMetadataForLink
(
LinkInterface
*
link
)
=
0
;
public
slots
:
virtual
void
receiveBytes
(
LinkInterface
*
link
,
QByteArray
b
)
=
0
;
virtual
void
linkStatusChanged
(
bool
connected
)
=
0
;
signals:
/** @brief Update the packet loss from one system */
void
receiveLossChanged
(
int
uasId
,
float
loss
);
};
src/uas/UASInterface.h
View file @
c7a3dd87
...
...
@@ -20,7 +20,6 @@
#include <QPointer>
#include "LinkInterface.h"
#include "ProtocolInterface.h"
#ifndef __mobile__
class
FileManager
;
...
...
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