Skip to content

Commit

Permalink
Merge branch 'master' into feature/kalman_filter
Browse files Browse the repository at this point in the history
  • Loading branch information
gsilano committed Jun 11, 2018
2 parents 4c9315d + 25a4710 commit 726614a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Changelog for package teamsannio_med_control
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^


0.1.4 (2018-06-11)
------------------
* added the Kalman filter
Expand All @@ -12,7 +11,7 @@ Changelog for package teamsannio_med_control
* Contributors: Pasquale Oppido, Giuseppe Silano, Luigi Iannelli

0.1.3 (2018-05-25)
------------------
-----------
* added the data storage section. Such section has been inserted in the position controller node and allows to storage, in defined csv files, the aircraft and controller state.
* bug fixing
* the sim time has been added in the launch file. Now the position controller node uses the simulation and not wall clock time.
Expand Down
3 changes: 0 additions & 3 deletions src/library/position_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,6 @@ void PositionController::CalculateRotorVelocities(Eigen::Vector4d* rotor_velocit
double u_x, u_y, u_Terr;
AttitudeController(&u_phi, &u_theta, &u_psi);
PosController(&u_x, &u_y, &control_.thrust, &u_Terr);



if(dataStoring_active_){
//Saving control signals in a file
Expand Down Expand Up @@ -590,7 +588,6 @@ void PositionController::CallbackPosition(const ros::TimerEvent& event){
SetOdometryEstimated();
PositionErrors(&e_x_, &e_y_, &e_z_);
VelocityErrors(&dot_e_x_, &dot_e_y_, &dot_e_z_);


//Saving the time instant when the position errors are computed
if(dataStoring_active_){
Expand Down

0 comments on commit 726614a

Please sign in to comment.