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
159e12cd
Commit
159e12cd
authored
8 years ago
by
Don Gagne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to new mavCommandResult signature
parent
d84dd7e4
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
ESP8266ComponentController.cc
src/AutoPilotPlugins/Common/ESP8266ComponentController.cc
+1
-1
ESP8266ComponentController.h
src/AutoPilotPlugins/Common/ESP8266ComponentController.h
+1
-1
MAVLinkLogManager.cc
src/Vehicle/MAVLinkLogManager.cc
+1
-1
MAVLinkLogManager.h
src/Vehicle/MAVLinkLogManager.h
+1
-1
Vehicle.h
src/Vehicle/Vehicle.h
+1
-1
No files found.
src/AutoPilotPlugins/Common/ESP8266ComponentController.cc
View file @
159e12cd
...
@@ -381,7 +381,7 @@ ESP8266ComponentController::_processTimeout()
...
@@ -381,7 +381,7 @@ ESP8266ComponentController::_processTimeout()
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
void
void
ESP8266ComponentController
::
_mavCommandResult
(
int
vehicleId
,
int
component
,
MAV_CMD
command
,
MAV_RESULT
result
,
bool
noReponseFromVehicle
)
ESP8266ComponentController
::
_mavCommandResult
(
int
vehicleId
,
int
component
,
int
command
,
int
result
,
bool
noReponseFromVehicle
)
{
{
Q_UNUSED
(
vehicleId
);
Q_UNUSED
(
vehicleId
);
Q_UNUSED
(
noReponseFromVehicle
);
Q_UNUSED
(
noReponseFromVehicle
);
...
...
This diff is collapsed.
Click to expand it.
src/AutoPilotPlugins/Common/ESP8266ComponentController.h
View file @
159e12cd
...
@@ -83,7 +83,7 @@ signals:
...
@@ -83,7 +83,7 @@ signals:
private
slots
:
private
slots
:
void
_processTimeout
();
void
_processTimeout
();
void
_mavCommandResult
(
int
vehicleId
,
int
component
,
MAV_CMD
command
,
MAV_RESULT
result
,
bool
noReponseFromVehicle
);
void
_mavCommandResult
(
int
vehicleId
,
int
component
,
int
command
,
int
result
,
bool
noReponseFromVehicle
);
void
_ssidChanged
(
QVariant
value
);
void
_ssidChanged
(
QVariant
value
);
void
_passwordChanged
(
QVariant
value
);
void
_passwordChanged
(
QVariant
value
);
void
_baudChanged
(
QVariant
value
);
void
_baudChanged
(
QVariant
value
);
...
...
This diff is collapsed.
Click to expand it.
src/Vehicle/MAVLinkLogManager.cc
View file @
159e12cd
...
@@ -769,7 +769,7 @@ MAVLinkLogManager::_mavlinkLogData(Vehicle* /*vehicle*/, uint8_t /*target_system
...
@@ -769,7 +769,7 @@ MAVLinkLogManager::_mavlinkLogData(Vehicle* /*vehicle*/, uint8_t /*target_system
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
void
void
MAVLinkLogManager
::
_mavCommandResult
(
int
vehicleId
,
int
component
,
MAV_CMD
command
,
MAV_RESULT
result
,
bool
noReponseFromVehicle
)
MAVLinkLogManager
::
_mavCommandResult
(
int
vehicleId
,
int
component
,
int
command
,
int
result
,
bool
noReponseFromVehicle
)
{
{
Q_UNUSED
(
vehicleId
);
Q_UNUSED
(
vehicleId
);
Q_UNUSED
(
component
);
Q_UNUSED
(
component
);
...
...
This diff is collapsed.
Click to expand it.
src/Vehicle/MAVLinkLogManager.h
View file @
159e12cd
...
@@ -172,7 +172,7 @@ private slots:
...
@@ -172,7 +172,7 @@ private slots:
void
_activeVehicleChanged
(
Vehicle
*
vehicle
);
void
_activeVehicleChanged
(
Vehicle
*
vehicle
);
void
_mavlinkLogData
(
Vehicle
*
vehicle
,
uint8_t
target_system
,
uint8_t
target_component
,
uint16_t
sequence
,
uint8_t
first_message
,
QByteArray
data
,
bool
acked
);
void
_mavlinkLogData
(
Vehicle
*
vehicle
,
uint8_t
target_system
,
uint8_t
target_component
,
uint16_t
sequence
,
uint8_t
first_message
,
QByteArray
data
,
bool
acked
);
void
_armedChanged
(
bool
armed
);
void
_armedChanged
(
bool
armed
);
void
_mavCommandResult
(
int
vehicleId
,
int
component
,
MAV_CMD
command
,
MAV_RESULT
result
,
bool
noReponseFromVehicle
);
void
_mavCommandResult
(
int
vehicleId
,
int
component
,
int
command
,
int
result
,
bool
noReponseFromVehicle
);
private:
private:
bool
_sendLog
(
const
QString
&
logFile
);
bool
_sendLog
(
const
QString
&
logFile
);
...
...
This diff is collapsed.
Click to expand it.
src/Vehicle/Vehicle.h
View file @
159e12cd
...
@@ -664,7 +664,7 @@ signals:
...
@@ -664,7 +664,7 @@ signals:
/// @param command MAV_CMD Command which was sent
/// @param command MAV_CMD Command which was sent
/// @param result MAV_RESULT returned in ack
/// @param result MAV_RESULT returned in ack
/// @param noResponseFromVehicle true: vehicle did not respond to command, false: vehicle responsed, MAV_RESULT in result
/// @param noResponseFromVehicle true: vehicle did not respond to command, false: vehicle responsed, MAV_RESULT in result
void
mavCommandResult
(
int
vehicleId
,
int
component
,
MAV_CMD
command
,
MAV_RESULT
result
,
bool
noReponseFromVehicle
);
void
mavCommandResult
(
int
vehicleId
,
int
component
,
int
command
,
int
result
,
bool
noReponseFromVehicle
);
private
slots
:
private
slots
:
void
_mavlinkMessageReceived
(
LinkInterface
*
link
,
mavlink_message_t
message
);
void
_mavlinkMessageReceived
(
LinkInterface
*
link
,
mavlink_message_t
message
);
...
...
This diff is collapsed.
Click to expand it.
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