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
f350bab6
Commit
f350bab6
authored
8 years ago
by
Emmanuel Roussel
Committed by
Roman
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
use accelerations provided by the control_state message instead of
sensor_combined
parent
e6b3cf3a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/modules/land_detector/MulticopterLandDetector.cpp
+6
-9
6 additions, 9 deletions
src/modules/land_detector/MulticopterLandDetector.cpp
src/modules/land_detector/MulticopterLandDetector.h
+3
-3
3 additions, 3 deletions
src/modules/land_detector/MulticopterLandDetector.h
with
9 additions
and
12 deletions
src/modules/land_detector/MulticopterLandDetector.cpp
+
6
−
9
View file @
f350bab6
...
...
@@ -61,7 +61,7 @@ MulticopterLandDetector::MulticopterLandDetector() : LandDetector(),
_actuators
{},
_arming
{},
_vehicleAttitude
{},
_
sensors
{},
_
ctrl_state
{},
_landTimer
(
0
),
_freefallTimer
(
0
)
{
...
...
@@ -82,7 +82,7 @@ void MulticopterLandDetector::initialize()
_armingSub
=
orb_subscribe
(
ORB_ID
(
actuator_armed
));
_parameterSub
=
orb_subscribe
(
ORB_ID
(
parameter_update
));
_manualSub
=
orb_subscribe
(
ORB_ID
(
manual_control_setpoint
));
_
sensorsS
ub
=
orb_subscribe
(
ORB_ID
(
sensor_combined
));
_
ctrl_state_s
ub
=
orb_subscribe
(
ORB_ID
(
control_state
));
// download parameters
updateParameterCache
(
true
);
...
...
@@ -95,7 +95,7 @@ void MulticopterLandDetector::updateSubscriptions()
orb_update
(
ORB_ID_VEHICLE_ATTITUDE_CONTROLS
,
_actuatorsSub
,
&
_actuators
);
orb_update
(
ORB_ID
(
actuator_armed
),
_armingSub
,
&
_arming
);
orb_update
(
ORB_ID
(
manual_control_setpoint
),
_manualSub
,
&
_manual
);
orb_update
(
ORB_ID
(
sensor_combined
),
_sensorsSub
,
&
_sensors
);
orb_update
(
ORB_ID
(
control_state
),
_ctrl_state_sub
,
&
_ctrl_state
);
}
LandDetectionResult
MulticopterLandDetector
::
update
()
...
...
@@ -127,12 +127,9 @@ bool MulticopterLandDetector::get_freefall_state()
const
uint64_t
now
=
hrt_absolute_time
();
float
acc_norm
=
0.0
;
for
(
int
i
=
0
;
i
<
3
;
i
++
)
{
acc_norm
+=
_sensors
.
accelerometer_m_s2
[
i
]
*
_sensors
.
accelerometer_m_s2
[
i
];
}
float
acc_norm
=
_ctrl_state
.
x_acc
*
_ctrl_state
.
x_acc
+
_ctrl_state
.
y_acc
*
_ctrl_state
.
y_acc
+
_ctrl_state
.
z_acc
*
_ctrl_state
.
z_acc
;
acc_norm
=
sqrtf
(
acc_norm
);
//norm of specific force. Should be close to 9.8 m/s^2 when landed.
bool
freefall
=
(
acc_norm
<
_params
.
acc_threshold_m_s2
);
//true if we are currently falling
...
...
This diff is collapsed.
Click to expand it.
src/modules/land_detector/MulticopterLandDetector.h
+
3
−
3
View file @
f350bab6
...
...
@@ -50,7 +50,7 @@
#include
<uORB/topics/actuator_armed.h>
#include
<uORB/topics/parameter_update.h>
#include
<uORB/topics/manual_control_setpoint.h>
#include
<uORB/topics/
sensor_combined
.h>
#include
<uORB/topics/
control_state
.h>
#include
<systemlib/param/param.h>
namespace
landdetection
...
...
@@ -122,14 +122,14 @@ private:
int
_parameterSub
;
int
_attitudeSub
;
int
_manualSub
;
int
_
sensorsS
ub
;
int
_
ctrl_state_s
ub
;
struct
vehicle_local_position_s
_vehicleLocalPosition
;
struct
actuator_controls_s
_actuators
;
struct
actuator_armed_s
_arming
;
struct
vehicle_attitude_s
_vehicleAttitude
;
struct
manual_control_setpoint_s
_manual
;
struct
sensor_combined_s
_sensors
;
struct
control_state_s
_ctrl_state
;
uint64_t
_landTimer
;
/**< timestamp in microseconds since a possible land was detected*/
uint64_t
_freefallTimer
;
/**< timestamp in microseconds since a possible freefall was detected*/
...
...
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