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
f4613c94
Commit
f4613c94
authored
Sep 05, 2017
by
Jacob Walser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark overridden methods as such
parent
994ad2d1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
ArduSubFirmwarePlugin.h
src/FirmwarePlugin/APM/ArduSubFirmwarePlugin.h
+12
-12
No files found.
src/FirmwarePlugin/APM/ArduSubFirmwarePlugin.h
View file @
f4613c94
...
...
@@ -101,33 +101,33 @@ public:
ArduSubFirmwarePlugin
(
void
);
// Overrides from FirmwarePlugin
int
manualControlReservedButtonCount
(
void
);
int
manualControlReservedButtonCount
(
void
)
final
;
int
defaultJoystickTXMode
(
void
)
final
{
return
3
;
}
bool
supportsThrottleModeCenterZero
(
void
);
bool
supportsThrottleModeCenterZero
(
void
)
final
;
bool
supportsManualControl
(
void
);
bool
supportsManualControl
(
void
)
final
;
bool
supportsRadio
(
void
);
bool
supportsRadio
(
void
)
final
;
bool
supportsJSButton
(
void
);
bool
supportsJSButton
(
void
)
final
;
bool
supportsMotorInterference
(
void
);
bool
supportsMotorInterference
(
void
)
final
;
/// Return the resource file which contains the vehicle icon used in the flight view when the view is dark (Satellite for instance)
virtual
QString
vehicleImageOpaque
(
const
Vehicle
*
vehicle
)
const
override
;
virtual
QString
vehicleImageOpaque
(
const
Vehicle
*
vehicle
)
const
final
;
/// Return the resource file which contains the vehicle icon used in the flight view when the view is light (Map for instance)
virtual
QString
vehicleImageOutline
(
const
Vehicle
*
vehicle
)
const
override
;
virtual
QString
vehicleImageOutline
(
const
Vehicle
*
vehicle
)
const
final
;
QString
brandImageIndoor
(
const
Vehicle
*
vehicle
)
const
{
Q_UNUSED
(
vehicle
);
return
QStringLiteral
(
"/qmlimages/APM/BrandImageSub"
);
}
QString
brandImageOutdoor
(
const
Vehicle
*
vehicle
)
const
{
Q_UNUSED
(
vehicle
);
return
QStringLiteral
(
"/qmlimages/APM/BrandImageSub"
);
}
QString
brandImageIndoor
(
const
Vehicle
*
vehicle
)
const
final
{
Q_UNUSED
(
vehicle
);
return
QStringLiteral
(
"/qmlimages/APM/BrandImageSub"
);
}
QString
brandImageOutdoor
(
const
Vehicle
*
vehicle
)
const
final
{
Q_UNUSED
(
vehicle
);
return
QStringLiteral
(
"/qmlimages/APM/BrandImageSub"
);
}
const
FirmwarePlugin
::
remapParamNameMajorVersionMap_t
&
paramNameRemapMajorVersionMap
(
void
)
const
final
{
return
_remapParamName
;
}
int
remapParamNameHigestMinorVersionNumber
(
int
majorVersionNumber
)
const
final
;
const
QVariantList
&
toolBarIndicators
(
const
Vehicle
*
vehicle
)
final
;
bool
adjustIncomingMavlinkMessage
(
Vehicle
*
vehicle
,
mavlink_message_t
*
message
);
virtual
QMap
<
QString
,
FactGroup
*>*
factGroups
(
void
);
bool
adjustIncomingMavlinkMessage
(
Vehicle
*
vehicle
,
mavlink_message_t
*
message
)
final
;
virtual
QMap
<
QString
,
FactGroup
*>*
factGroups
(
void
)
final
;
private:
...
...
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