Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
d4b272eb
Commit
d4b272eb
authored
Dec 23, 2016
by
Don Gagne
Committed by
GitHub
Dec 23, 2016
Browse files
Merge pull request #4315 from bluerobotics/nullpointerCrash
Null pointer issue
parents
f7f80443
8f1aac18
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/uas/UAS.cc
View file @
d4b272eb
...
...
@@ -979,6 +979,10 @@ void UAS::setExternalControlSetpoint(float roll, float pitch, float yaw, float t
return
;
}
if
(
!
_vehicle
->
priorityLink
())
{
return
;
}
// Store the previous manual commands
static
float
manualRollAngle
=
0.0
;
static
float
manualPitchAngle
=
0.0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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