[Robot] To transition to a succeeded state, the goal must be in a preempting or active state...

天涯浪子 提交于 2020-01-19 03:10:03

记录
错误:To transition to a succeeded state, the goal must be in a preempting or active state, it is currently in state: 2
原因:不能在抢占回调后server端仍然发送setSucceeded(),因为抢占后便放弃了之前的执行,错在此处

            server.setSucceeded();

解决:加入一个bool变量标识符在执行函数中,解决抢断的逻辑问题
执行函数修改如下

	void ExecuteCb(const franka_msgs::PickGoalConstPtr& goal)
    { 
    	action_ = true;//为保证标识符有效且不影响正常运行,应进入执行函数时便设置为true
    	 ...//(此处为代码块省略)
        if(action_){
            server.setSucceeded();
        }
    }

抢断函数修改如下:

    void preemptCb() 
    { 
       //会自动执行第一个目标再执行第二个。;
            ROS_INFO_STREAM("into preemptCB ...");
            action_ = false;//此处告知:我抢断了,就别发succeed了
    	    group_->stop();
    	    server.setPreempted();
	}

实际跑测有效

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!