Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sot-talos-balance
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
Container Registry
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Guilhem Saurel
sot-talos-balance
Commits
310722e1
Commit
310722e1
authored
5 years ago
by
Gabriele Buondonno
Browse files
Options
Downloads
Patches
Plain Diff
[imu_offset_compensation] Remove warnings and tabs
parent
11932c31
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
include/sot/talos_balance/imu_offset_compensation.hh
+1
-1
1 addition, 1 deletion
include/sot/talos_balance/imu_offset_compensation.hh
src/imu_offset_compensation.cpp
+1
-2
1 addition, 2 deletions
src/imu_offset_compensation.cpp
with
2 additions
and
3 deletions
include/sot/talos_balance/imu_offset_compensation.hh
+
1
−
1
View file @
310722e1
...
@@ -81,7 +81,7 @@ namespace dynamicgraph {
...
@@ -81,7 +81,7 @@ namespace dynamicgraph {
protected:
protected:
bool
m_initSucceeded
;
/// true if the entity has been successfully initialized
bool
m_initSucceeded
;
/// true if the entity has been successfully initialized
float
m_dt
;
/// sampling time in seconds
double
m_dt
;
/// sampling time in seconds
int
m_update_cycles_left
;
/// number of update cycles left
int
m_update_cycles_left
;
/// number of update cycles left
int
m_update_cycles
;
/// total number of update cycles to perform
int
m_update_cycles
;
/// total number of update cycles to perform
double
m_a_gyro_DC_blocker
;
/// filter parameter to remove DC from gyro online (should be close to <1.0 and equal to 1.0 for disabling)
double
m_a_gyro_DC_blocker
;
/// filter parameter to remove DC from gyro online (should be close to <1.0 and equal to 1.0 for disabling)
...
...
This diff is collapsed.
Click to expand it.
src/imu_offset_compensation.cpp
+
1
−
2
View file @
310722e1
...
@@ -42,11 +42,10 @@ namespace dynamicgraph
...
@@ -42,11 +42,10 @@ namespace dynamicgraph
,
CONSTRUCT_SIGNAL_OUT
(
accelerometer_out
,
dynamicgraph
::
Vector
,
m_accelerometer_inSIN
)
,
CONSTRUCT_SIGNAL_OUT
(
accelerometer_out
,
dynamicgraph
::
Vector
,
m_accelerometer_inSIN
)
,
CONSTRUCT_SIGNAL_OUT
(
gyrometer_out
,
dynamicgraph
::
Vector
,
m_gyrometer_inSIN
)
,
CONSTRUCT_SIGNAL_OUT
(
gyrometer_out
,
dynamicgraph
::
Vector
,
m_gyrometer_inSIN
)
,
m_initSucceeded
(
false
)
,
m_initSucceeded
(
false
)
,
m_dt
(
0.001
)
,
m_update_cycles_left
(
0
)
,
m_update_cycles_left
(
0
)
,
m_update_cycles
(
0
)
,
m_update_cycles
(
0
)
,
m_dt
(
0.001
)
,
m_a_gyro_DC_blocker
(
1.0
)
,
m_a_gyro_DC_blocker
(
1.0
)
{
{
Entity
::
signalRegistration
(
INPUT_SIGNALS
<<
OUTPUT_SIGNALS
);
Entity
::
signalRegistration
(
INPUT_SIGNALS
<<
OUTPUT_SIGNALS
);
...
...
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