Skip to content

Commit

Permalink
robot-interface.l : wait for feedback message is updated
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Jun 20, 2016
1 parent 0681f9e commit 34d86eb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pr2eus/robot-interface.l
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@

(defclass controller-action-client
:super ros::simple-action-client
:slots (time-to-finish
:slots (time-to-finish last-feedback-msg-stamp
ri angle-vector-sequence timer-sequence current-time current-angle-vector previous-angle-vector scale-angle-vector;; slot for angle-vector-sequence
))
(defmethod controller-action-client
(:init (r &rest args)
(setq ri r) ;; robot-interface
(setq time-to-finish 0)
(setq last-feedback-msg-stamp (ros::time-now)) ;; this is for real robot
(send-super* :init args))
(:last-feedback-msg-stamp () last-feedback-msg-stamp)
(:time-to-finish ()
(ros::ros-debug "[~A] time-to-fnish ~A" ros::name-space time-to-finish)
time-to-finish)
Expand Down Expand Up @@ -517,6 +519,14 @@ return t if interpolating"
(send *ri* :angle-vector av)
(send *ri* :wait-interpolation-smooth 300))
Return value is a list of interpolatingp for all controllers, so (null (some #'identity (send *ri* :wait-interpolation))) -> t if all interpolation has stopped"
(when (not (send self :simulation-modep))
(let ((tm (ros::time-now))
(cacts (cond
(ctype (gethash ctype controller-table))
(t controller-actions))))
(while (some #'(lambda (x) (<= (send (ros::time- (send x :last-feedback-msg-stamp) tm) :to-sec) 0)) cacts)
(send self :spin-once) ;; need to wait for feedback
(send self :ros-wait 0.005))))
(while (null (send self :interpolating-smoothp time-to-finish ctype))
(send self :ros-wait 0.005)))
(:interpolating-smoothp (time-to-finish &optional (ctype)) ;; controller-type
Expand Down

0 comments on commit 34d86eb

Please sign in to comment.