Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
b678a554
Commit
b678a554
authored
9 years ago
by
Lorenz Meier
Browse files
Options
Downloads
Patches
Plain Diff
Launch detection: Fix code style
parent
25f4a987
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/lib/launchdetection/CatapultLaunchMethod.cpp
+13
-3
13 additions, 3 deletions
src/lib/launchdetection/CatapultLaunchMethod.cpp
src/lib/launchdetection/LaunchDetector.cpp
+8
-4
8 additions, 4 deletions
src/lib/launchdetection/LaunchDetector.cpp
with
21 additions
and
7 deletions
src/lib/launchdetection/CatapultLaunchMethod.cpp
+
13
−
3
View file @
b678a554
...
...
@@ -58,7 +58,8 @@ CatapultLaunchMethod::CatapultLaunchMethod(SuperBlock *parent) :
}
CatapultLaunchMethod
::~
CatapultLaunchMethod
()
{
CatapultLaunchMethod
::~
CatapultLaunchMethod
()
{
}
...
...
@@ -69,34 +70,41 @@ void CatapultLaunchMethod::update(float accel_x)
switch
(
state
)
{
case
LAUNCHDETECTION_RES_NONE
:
/* Detect a acceleration that is longer and stronger as the minimum given by the params */
if
(
accel_x
>
thresholdAccel
.
get
())
{
integrator
+=
dt
;
if
(
integrator
>
thresholdTime
.
get
())
{
if
(
motorDelay
.
get
()
>
0.0
f
)
{
state
=
LAUNCHDETECTION_RES_DETECTED_ENABLECONTROL
;
warnx
(
"Launch detected: state: enablecontrol, waiting %.2fs until using full"
" throttle"
,
(
double
)
motorDelay
.
get
());
" throttle"
,
(
double
)
motorDelay
.
get
());
}
else
{
/* No motor delay set: go directly to enablemotors state */
state
=
LAUNCHDETECTION_RES_DETECTED_ENABLEMOTORS
;
warnx
(
"Launch detected: state: enablemotors (delay not activated)"
);
}
}
}
else
{
/* reset */
reset
();
}
break
;
case
LAUNCHDETECTION_RES_DETECTED_ENABLECONTROL
:
/* Vehicle is currently controlling attitude but not with full throttle. Waiting until delay is
* over to allow full throttle */
motorDelayCounter
+=
dt
;
if
(
motorDelayCounter
>
motorDelay
.
get
())
{
warnx
(
"Launch detected: state enablemotors"
);
state
=
LAUNCHDETECTION_RES_DETECTED_ENABLEMOTORS
;
}
break
;
default
:
...
...
@@ -119,10 +127,12 @@ void CatapultLaunchMethod::reset()
state
=
LAUNCHDETECTION_RES_NONE
;
}
float
CatapultLaunchMethod
::
getPitchMax
(
float
pitchMaxDefault
)
{
float
CatapultLaunchMethod
::
getPitchMax
(
float
pitchMaxDefault
)
{
/* If motor is turned on do not impose the extra limit on maximum pitch */
if
(
state
==
LAUNCHDETECTION_RES_DETECTED_ENABLEMOTORS
)
{
return
pitchMaxDefault
;
}
else
{
return
pitchMaxPreThrottle
.
get
();
}
...
...
This diff is collapsed.
Click to expand it.
src/lib/launchdetection/LaunchDetector.cpp
+
8
−
4
View file @
b678a554
...
...
@@ -89,14 +89,15 @@ LaunchDetectionResult LaunchDetector::getLaunchDetected()
{
if
(
launchdetection_on
.
get
()
==
1
)
{
if
(
activeLaunchDetectionMethodIndex
<
0
)
{
/* None of the active launchmethods has detected a launch, check all launchmethods */
/* None of the active launchmethods has detected a launch, check all launchmethods */
for
(
unsigned
i
=
0
;
i
<
(
sizeof
(
launchMethods
)
/
sizeof
(
launchMethods
[
0
]));
i
++
)
{
if
(
launchMethods
[
i
]
->
getLaunchDetected
()
!=
LAUNCHDETECTION_RES_NONE
)
{
if
(
launchMethods
[
i
]
->
getLaunchDetected
()
!=
LAUNCHDETECTION_RES_NONE
)
{
warnx
(
"selecting launchmethod %d"
,
i
);
activeLaunchDetectionMethodIndex
=
i
;
// from now on only check this method
return
launchMethods
[
i
]
->
getLaunchDetected
();
}
}
}
else
{
return
launchMethods
[
activeLaunchDetectionMethodIndex
]
->
getLaunchDetected
();
}
...
...
@@ -105,7 +106,8 @@ LaunchDetectionResult LaunchDetector::getLaunchDetected()
return
LAUNCHDETECTION_RES_NONE
;
}
float
LaunchDetector
::
getPitchMax
(
float
pitchMaxDefault
)
{
float
LaunchDetector
::
getPitchMax
(
float
pitchMaxDefault
)
{
if
(
!
launchdetection_on
.
get
())
{
return
pitchMaxDefault
;
}
...
...
@@ -113,11 +115,13 @@ float LaunchDetector::getPitchMax(float pitchMaxDefault) {
/* if a lauchdetectionmethod is active or only one exists return the pitch limit from this method,
* otherwise use the default limit */
if
(
activeLaunchDetectionMethodIndex
<
0
)
{
if
(
sizeof
(
launchMethods
)
/
sizeof
(
LaunchMethod
*
)
>
1
)
{
if
(
sizeof
(
launchMethods
)
/
sizeof
(
LaunchMethod
*
)
>
1
)
{
return
pitchMaxDefault
;
}
else
{
return
launchMethods
[
0
]
->
getPitchMax
(
pitchMaxDefault
);
}
}
else
{
return
launchMethods
[
activeLaunchDetectionMethodIndex
]
->
getPitchMax
(
pitchMaxDefault
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment