-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Twist controller extensions #110
Changes from 8 commits
f3162f1
61e56ae
992054c
9a6def8
abafddb
b6df2ff
3e6257a
e004474
44979e3
3b82a04
7f732e2
864f5e0
1cd9dc9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,7 +90,7 @@ int DistanceManager::init() | |
return -1; | ||
} | ||
|
||
if(!nh_.getParam("joint_names", this->joints_)) | ||
if(!nh_.getParam("/arm_left/joint_names", this->joints_)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. revert |
||
{ | ||
ROS_ERROR("Failed to get parameter \"joint_names\"."); | ||
return -2; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,10 @@ include_directories(include ${catkin_INCLUDE_DIRS} ${EIGEN_INCLUDE_DIRS} ${oroco | |
set(SRC_C_DIR "src/constraint_solvers") | ||
set(SRC_CS_DIR "${SRC_C_DIR}/solvers") | ||
|
||
add_library(jacobian_derivative src/utils/chainjnttojacdotsolver.cpp) | ||
add_dependencies(jacobian_derivative ${catkin_LIBRARIES} ${orocos_kdl_LIBRARIES}) | ||
target_link_libraries(jacobian_derivative ${catkin_LIBRARIES}) | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, it's removed now...but where has it been used? Or hasn't it been used at all? |
||
add_library(damping_methods src/damping_methods/damping.cpp) | ||
add_dependencies(damping_methods ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) | ||
target_link_libraries(damping_methods ${catkin_LIBRARIES}) | ||
|
@@ -39,7 +43,7 @@ target_link_libraries(inv_calculations ${catkin_LIBRARIES}) | |
|
||
add_library(constraint_solvers ${SRC_CS_DIR}/unconstraint_solver.cpp ${SRC_CS_DIR}/wln_joint_limit_avoidance_solver.cpp ${SRC_CS_DIR}/weighted_least_norm_solver.cpp ${SRC_CS_DIR}/gradient_projection_method_solver.cpp ${SRC_CS_DIR}/stack_of_tasks_solver.cpp ${SRC_CS_DIR}/task_priority_solver.cpp ${SRC_C_DIR}/constraint_solver_factory.cpp) | ||
add_dependencies(constraint_solvers ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) | ||
target_link_libraries(constraint_solvers damping_methods inv_calculations) | ||
target_link_libraries(constraint_solvers damping_methods inv_calculations jacobian_derivative) | ||
|
||
add_library(limiters src/limiters/limiter.cpp) | ||
add_dependencies(limiters ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS}) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
revert