ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Timer callback function do not working when action server be called? [closed]

asked 2020-01-20 10:02:57 -0500

snowman gravatar image

updated 2020-04-05 08:46:18 -0500

Timer callback function do not working when action server be called?

Hello, I find a interested problem just now. It was action server callback function may cause timer callback function do not work.

The reason why I put action-server & timer in same class is that it will be convenient to communicate between Arduino&Moveit. So timer callback function is used for reading & writing data, and action server callback function is used for getting way points. Here is a part of my code.

#ifndef LEAFROBOT_H
#define LEAFROBOT_H
#include "leaf_driver/ManipulatorProtocol.h"

class LeafRobot : public hardware_interface::RobotHW
{
public:
    LeafRobot(),
        as_(nh_, "leaf_controller/follow_joint_trajectory", 
           boost::bind(&LeafRobot::executeCB, this, _1), 
           false)
    {
       .......
       clock = 0.02;    //0.02s
       timer = nh_.createTimer(ros::Duration(clock), &LeafRobot::timerCallback, this);
       ......
       as_.start();    //action server start
       ......
    };

    virtual ~LeafRobot()
    {
       ......
    };

    bool read()
    {
       //read data and save in readList
       ......
    };

    int write()
    {
       //write data from writeList
       ......
    };

    void timerCallback(const ros::TimerEvent& e)
    {
       //Update readList and write data to Arduino
       cout << "TimerCallback\n";
       write();
       if(read())
       {
           return;
       }
       usleep(1000);
       if(read())
       {
           return;
       }
    };

    void executeCB(actionlib::ServerGoalHandle<control_msgs::FollowJointTrajectoryAction> goal_)
    {
       //Action server callback function
        cout << "executeCB\n";
        actionlib::ActionServer<control_msgs::FollowJointTrajectoryAction>::Goal goal = *(goal_.getGoal());
        goal_handle_ = goal_;
        addWaypoints(goal.trajectory);
        trackMove();

        goal_handle_.setAccepted();    
        result_.error_code = result_.SUCCESSFUL;
        goal_handle_.setSucceeded(result_);
    };

    void trackMove()
    {
       //Every points will load to writeList(a point). 
       //And If readList(a point) is equal writeList(a point), 
       //the function will load next point to writeList.
       ......
    };
    ......
    ......
private:
    ......
    ......
    ros::NodeHandle nh_;
    ros::Time time_current, time_prev;
    ros::Timer timer;
    double clock;
    actionlib::ActionServer<control_msgs::FollowJointTrajectoryAction>  as_;    ![image description](http://)
    control_msgs::FollowJointTrajectoryResult result_; 
    ......
    ......
};
#endif //LEAFROBOT

The main function just have a LeafRobot Object and other simple code.

When it run, terminal just like this.

TimerCallback
TimerCallback
TimerCallback
executeCB
TrackMoving 
Arrive to 0 th point : 
Arrive to 1 th point : 
Ignore 1 th point : 
Arrive to 2 th point : 
Ignore 2 th point : 
Arrive to 3 th point : 
Ignore 3 th point : 
Arrive to 4 th point :

After TrackMoving display , it always display Arrive to X th point : or Ignore X th point : . It means, timerCallback didn't be called when executeCB running. Maybe I need to use timer in C++, or don't use ROS timer and update readList&writeList in main function , through it could not very accurate.

Welcome to take some advise to me.That all, Thanks for your attention.

edit retag flag offensive reopen merge delete

Closed for the following reason duplicate question by snowman
close date 2020-04-05 08:46:35.548646

Comments

The main function just have a LeafRobot Object and other simple code.

could be, but I have a feeling the cause of what you observe is in that code.

So please show it.

gvdhoorn gravatar image gvdhoorn  ( 2020-01-20 10:43:48 -0500 )edit

If you want to get it in detail. Here is. link text

snowman gravatar image snowman  ( 2020-01-25 04:38:30 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-01-21 09:40:27 -0500

snowman gravatar image

All right, I don't know what happened. I just replaced actionlib::ActionServer<control_msgs::followjointtrajectoryaction> as_ with actionlib::SimpleActionServer<control_msgs::followjointtrajectoryaction>as_, and change some code, like executeCB(const control_msgs::FollowJointTrajectoryGoalConstPtr &goal). Now it looks like action tutorial http://wiki.ros.org/actionlib_tutoria....

Amazing Timer callback function could be called when action-server callback function running.

Now, terminal just like this.

TrackMoving 
Arrive to 0 th point : 
TimerCallback
TimerCallback
Arrive to 1 th point : 
TimerCallback
TimerCallback
Arrive to 2 th point : 
TimerCallback
TimerCallback
Arrive to 3 th point : 
TimerCallback
TimerCallback

It's amazing! I guess ActionServer & SimpleActionServer are very different. It could be interrupted or not interrupted by other callback function? So actionlib_tutorials/Tutorials just have usage about SimpleActionServer? Maybe,SimpleActionServer is better than ActionServer?

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2020-01-20 10:02:57 -0500

Seen: 550 times

Last updated: Apr 05 '20