Skip to content
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.

Commit

Permalink
small modifications and added info to CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielenava committed Jan 25, 2017
1 parent bc92ab2 commit 7f5362d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 15 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,23 @@ and this project does not adheres to [Semantic Versioning](http://semver.org/).

## [0.1] - 2014-11-15
### Added
- First version of mex-wholebodymodel, compatible with wholebodyinterface v0.1 .
- First version of mex-wholebodymodel, compatible with wholebodyinterface v0.1.

[Unreleased]: https://github.com/robotology/mex-wholebodymodel/compare/v0.1...HEAD
[0.1]: https://github.com/robotology/mex-wholebodymodel/compare/9fe87c...v0.1

## [0.2] - 2017-01-25
### Added
- New version of mex-wholebodymodel. A complete refactory of the toolbox has been done.

[0.1]: https://github.com/robotology/mex-wholebodymodel/compare/v0.1...HEAD
[0.2]: https://github.com/robotology/mex-wholebodymodel/compare/9fe87c...v0.1

### Renamed
- The following WBM-wrappers have been renamed:
- The output of the following functions changed order:

### Moved
- The controllers have been refactored and moved on a different branch, called `WBM-controllers`;


28 changes: 14 additions & 14 deletions controllers/torqueBalancingWalkman/initializeTorqueBalancing.m
Original file line number Diff line number Diff line change
Expand Up @@ -108,21 +108,21 @@

% list of joints/links used for robot simulator
CONFIG.linkList = cell(15,1);
CONFIG.linkList{1} = 'Waist' ;
CONFIG.linkList{1} = 'Waist';
CONFIG.linkList{2} = 'RHipMot';
CONFIG.linkList{3} = 'RThighLowLeg' ;
CONFIG.linkList{4} = 'r_sole' ;
CONFIG.linkList{5} = 'LHipMot' ;
CONFIG.linkList{6} = 'LThighLowLeg' ;
CONFIG.linkList{7} = 'l_sole' ;
CONFIG.linkList{8} = 'neck_1' ;
CONFIG.linkList{9} = 'r_shoulder_1';
CONFIG.linkList{10} = 'r_elbow_1' ;
CONFIG.linkList{11} = 'r_gripper' ;
CONFIG.linkList{12} = 'l_shoulder_1';
CONFIG.linkList{13} = 'l_elbow_1' ;
CONFIG.linkList{14} = 'l_gripper' ;
CONFIG.linkList{15} = 'com' ;
CONFIG.linkList{3} = 'RLowLeg';
CONFIG.linkList{4} = 'r_sole';
CONFIG.linkList{5} = 'LHipMot';
CONFIG.linkList{6} = 'LLowLeg';
CONFIG.linkList{7} = 'l_sole';
CONFIG.linkList{8} = 'DWYTorso';
CONFIG.linkList{9} = 'RShp';
CONFIG.linkList{10} = 'RElb';
CONFIG.linkList{11} = 'l_hand_upper_right_link';
CONFIG.linkList{12} = 'LShp';
CONFIG.linkList{13} = 'LElb';
CONFIG.linkList{14} = 'l_hand_upper_left_link';
CONFIG.linkList{15} = 'com';

%% Paths definition and initialize the forward dynamics integration
% add the required paths. This procedure will make the paths consistent for
Expand Down

0 comments on commit 7f5362d

Please sign in to comment.