Skip to content
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

[hrpsys_ros_bridge_tutorials] fix for min-max table #508

Merged
merged 1 commit into from
May 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion hrpsys_ros_bridge_tutorials/euslisp/hrp4r-utils.l
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
()
(prog1
(send-super :init-ending)
(when (member :define-min-max-table (send self :methods))
(send self :define-min-max-table))
;; set force-sensor from .conf
(labels ((data-string-split ;; this function will be replaced by https://github.com/euslisp/EusLisp/issues/16
(str separator)
Expand Down Expand Up @@ -39,4 +41,4 @@
))
)))
)
)
)
2 changes: 2 additions & 0 deletions hrpsys_ros_bridge_tutorials/euslisp/jaxon-utils.l
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
(&rest args)
(prog1
(send-super* :init-ending args)
(when (member :define-min-max-table (send self :methods))
(send self :define-min-max-table))
(send self :add-hoist-point-coords)
(send self :add-shin-cushion-parts)
(send self :add-shin-contact-coords)
Expand Down
2 changes: 2 additions & 0 deletions hrpsys_ros_bridge_tutorials/euslisp/jaxon_red-utils.l
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
(&rest args)
(prog1
(send-super* :init-ending args)
(when (member :define-min-max-table (send self :methods))
(send self :define-min-max-table))
(send self :add-hoist-point-coords)
(send self :add-shin-cushion-parts)
(send self :add-shin-contact-coords)
Expand Down
2 changes: 2 additions & 0 deletions hrpsys_ros_bridge_tutorials/euslisp/staro-utils.l
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
(&rest args)
(prog1
(send-super* :init-ending args)
(when (member :define-min-max-table (send self :methods))
(send self :define-min-max-table))
(send self :add-additional-body-parts)

;; add contact-end-coords to arms
Expand Down