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
6dbf4e45
Commit
6dbf4e45
authored
9 years ago
by
Youssef Demitri
Browse files
Options
Downloads
Patches
Plain Diff
integrated ctrl state rates in mc_att_control
parent
78f5a35d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/modules/mc_att_control/mc_att_control_main.cpp
+11
-4
11 additions, 4 deletions
src/modules/mc_att_control/mc_att_control_main.cpp
with
11 additions
and
4 deletions
src/modules/mc_att_control/mc_att_control_main.cpp
+
11
−
4
View file @
6dbf4e45
...
...
@@ -76,6 +76,7 @@
#include
<uORB/topics/fw_virtual_rates_setpoint.h>
#include
<uORB/topics/mc_virtual_rates_setpoint.h>
#include
<uORB/topics/vehicle_attitude.h>
#include
<uORB/topics/control_state.h>
#include
<uORB/topics/vehicle_control_mode.h>
#include
<uORB/topics/vehicle_status.h>
#include
<uORB/topics/actuator_armed.h>
...
...
@@ -128,6 +129,7 @@ private:
int
_control_task
;
/**< task handle */
int
_v_att_sub
;
/**< vehicle attitude subscription */
int
_ctrl_state_sub
;
/**< control state subscription */
int
_v_att_sp_sub
;
/**< vehicle attitude setpoint subscription */
int
_v_rates_sp_sub
;
/**< vehicle rates setpoint subscription */
int
_v_control_mode_sub
;
/**< vehicle control mode subscription */
...
...
@@ -147,6 +149,7 @@ private:
bool
_actuators_0_circuit_breaker_enabled
;
/**< circuit breaker to suppress output */
struct
vehicle_attitude_s
_v_att
;
/**< vehicle attitude */
struct
control_state_s
_ctrl_state
;
/**< control state */
struct
vehicle_attitude_setpoint_s
_v_att_sp
;
/**< vehicle attitude setpoint */
struct
vehicle_rates_setpoint_s
_v_rates_sp
;
/**< vehicle rates setpoint */
struct
manual_control_setpoint_s
_manual_control_sp
;
/**< manual control setpoint */
...
...
@@ -304,6 +307,7 @@ MulticopterAttitudeControl::MulticopterAttitudeControl() :
/* subscriptions */
_v_att_sub
(
-
1
),
_ctrl_state_sub
(
-
1
),
_v_att_sp_sub
(
-
1
),
_v_control_mode_sub
(
-
1
),
_params_sub
(
-
1
),
...
...
@@ -326,6 +330,7 @@ MulticopterAttitudeControl::MulticopterAttitudeControl() :
{
memset
(
&
_v_att
,
0
,
sizeof
(
_v_att
));
memset
(
&
_ctrl_state
,
0
,
sizeof
(
_ctrl_state
));
memset
(
&
_v_att_sp
,
0
,
sizeof
(
_v_att_sp
));
memset
(
&
_v_rates_sp
,
0
,
sizeof
(
_v_rates_sp
));
memset
(
&
_manual_control_sp
,
0
,
sizeof
(
_manual_control_sp
));
...
...
@@ -708,9 +713,9 @@ MulticopterAttitudeControl::control_attitude_rates(float dt)
/* current body angular rates */
math
::
Vector
<
3
>
rates
;
rates
(
0
)
=
_
v_att
.
rollspeed
;
rates
(
1
)
=
_
v_att
.
pitch
speed
;
rates
(
2
)
=
_
v_att
.
yawspeed
;
rates
(
0
)
=
_
ctrl_state
.
roll_rate
;
rates
(
1
)
=
_
ctrl_state
.
pitch
_rate
;
rates
(
2
)
=
_
ctrl_state
.
yaw_rate
;
/* angular rates error */
math
::
Vector
<
3
>
rates_err
=
_rates_sp
-
rates
;
...
...
@@ -749,6 +754,7 @@ MulticopterAttitudeControl::task_main()
_v_att_sp_sub
=
orb_subscribe
(
ORB_ID
(
vehicle_attitude_setpoint
));
_v_rates_sp_sub
=
orb_subscribe
(
ORB_ID
(
vehicle_rates_setpoint
));
_v_att_sub
=
orb_subscribe
(
ORB_ID
(
vehicle_attitude
));
_ctrl_state_sub
=
orb_subscribe
(
ORB_ID
(
control_state
));
_v_control_mode_sub
=
orb_subscribe
(
ORB_ID
(
vehicle_control_mode
));
_params_sub
=
orb_subscribe
(
ORB_ID
(
parameter_update
));
_manual_control_sp_sub
=
orb_subscribe
(
ORB_ID
(
manual_control_setpoint
));
...
...
@@ -798,8 +804,9 @@ MulticopterAttitudeControl::task_main()
dt
=
0.02
f
;
}
/* copy attitude topic */
/* copy attitude
and control state
topic
s
*/
orb_copy
(
ORB_ID
(
vehicle_attitude
),
_v_att_sub
,
&
_v_att
);
orb_copy
(
ORB_ID
(
control_state
),
_ctrl_state_sub
,
&
_ctrl_state
);
/* check for updates in other topics */
parameter_update_poll
();
...
...
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