Skip to content
Snippets Groups Projects
Commit 310722e1 authored by Gabriele Buondonno's avatar Gabriele Buondonno
Browse files

[imu_offset_compensation] Remove warnings and tabs

parent 11932c31
No related branches found
No related tags found
No related merge requests found
...@@ -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)
......
...@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment