当前位置:   article > 正文

ros c++ 代码说明文档_【ROS教程 004】ROS的调试

ros 代码编辑与调试

v2-d4657bca124065da45710f01dee34aef_1440w.jpg?source=172ae18b

需要特别说明:ROS版本必须与Ubuntu系统版本匹配

实验环境:

ROS Fuerte

Ubuntu 12.04

ROS软件框架附带了大量功能强大的工具,包括调试工具、数据可视化工具、系统监测组件。ROS提供了一系列通用绘图工具,其中有针对标量值的时序绘图工具、支持双目立体视觉的图像展示工具、rviz等3D可视化工具(能够呈现点云、激光扫描等3D数据)。

1 调试ROS节点

(1)使用GDB调试器调试ROS节点

在ROS系统中允许使用GDB调试器对常规的C/C++程序进行调试。这里我们展示如何在GDB中运行chapter3_tutorials功能包中的example1节点。创建chapter3_tutorials功能包,并新建编译example1节点,example1.cpp中的代码如下:

  1. #include "ros/ros.h"
  2. int main( int argc, char **argv )
  3. {
  4. ros::init( argc, argv, "example1" );
  5. ros::NodeHandle n;
  6. const double val = 3.14;
  7. ROS_DEBUG( "This is a simple DEBUG message!" );
  8. ROS_DEBUG( "This is a DEBUG message with an argument: %f", val );
  9. ROS_DEBUG_STREAM(
  10. "This is DEBUG stream message with an argument: " << val
  11. );
  12. ros::spinOnce();
  13. return EXIT_SUCCESS;
  14. }

进入功能包路径:

$ roscd davebobo_tutorials/

然后,在GDB里面运行以下命令:

$ gdb bin/example1

一旦roscore已经启动,你就可以通过点击R键或Enter键从GDB中启动节点,也可以用L键列出相关的源代码。如果一切正常,在调试器内运行节点后就能在GDB终端看到下面的输出

v2-dc16bc013b1fe6334e0e2e17beda8947_b.jpg

(2)ROS节点启动时调用GDB调试器

如果在启动节点时使用启动文件来完成的话,就可以通过XML语法修改启动文件中的节点属性,在节点启动时调用GDB调试器。在chapter3_tutorials功能包中的example1,添加以下节点信息到launch文件夹下,文件名称为example1_gdb.launch内容如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <launch>
  3. <!-- Logger config -->
  4. <env name="ROSCONSOLE_CONFIG_FILE"
  5. value="$(find chapter3_tutorials)/config/chapter3_tutorials.config"/>
  6. <!-- Example 1 -->
  7. <node pkg="chapter3_tutorials" type="example1" name="example1"
  8. output="screen" launch-prefix="xterm -e gdb --args"/>
  9. </launch>

注意功能包传递给pkg属性,节点名称传递给type属性。

除此之外,我们可以通过调试信息(ROS内置log4cxx)和使用rosconsole以及rxconsole在运行时修改调试级别。

(3)监视系统状态

在系统运行时可能同时有多个节点和多个主题在发布消息,通过订阅与其他节点连接。ROS提供了一些基本而又非常强大的工具,它们不仅能实现状态监视,还能探测节点状态图中任何节点发生的功能失效。

①使用rxgraph在线监视节点状态图

ROS框架可以使用
rxgraph工具通过一个有向图显示在系统中运行的节点和这些节点通过主题实现的发布者到订阅者的连接。这里展示一个案例

第一步:创建服务SetSpeed.srv,记得将CMakeLists.txt中的rosbuild_gensrv()前的#去掉

  1. float32 desired_speed
  2. ---
  3. float32 previous_speed
  4. float32 new_speed
  5. bool stalled

第二步:新建节点example4和example5

example4.cpp中的代码

  1. #include <ros/ros.h>
  2. #include <ros/console.h>
  3. #include <std_msgs/Int32.h>
  4. #include <geometry_msgs/Vector3.h>
  5. #include <chapter3_tutorials/SetSpeed.h>
  6. int main( int argc, char **argv )
  7. {
  8. ros::init( argc, argv, "example4" );
  9. ros::NodeHandle n;
  10. ros::Publisher pub_temp = n.advertise< std_msgs::Int32 >( "temp", 1000 );
  11. ros::Publisher pub_accel = n.advertise< geometry_msgs::Vector3 >( "accel", 1000 );
  12. ros::ServiceClient srv_speed = n.serviceClient< chapter3_tutorials::SetSpeed>( "speed" );
  13. std_msgs::Int32 msg_temp;
  14. geometry_msgs::Vector3 msg_accel;
  15. chapter3_tutorials::SetSpeed msg_speed;
  16. int i = 0;
  17. ros::Rate rate( 1 );
  18. while( ros::ok() ) {
  19. msg_temp.data = i;
  20. msg_accel.x = 0.1 * i;
  21. msg_accel.y = 0.2 * i;
  22. msg_accel.z = 0.3 * i;
  23. msg_speed.request.desired_speed = 0.01 * i;
  24. pub_temp.publish( msg_temp );
  25. pub_accel.publish( msg_accel );
  26. if( srv_speed.call( msg_speed ) )
  27. {
  28. ROS_INFO_STREAM(
  29. "SetSpeed response:n" <<
  30. "previous speed = " << msg_speed.response.previous_speed << "n" <<
  31. "new speed = " << msg_speed.response.new_speed << "n" <<
  32. "motor stalled = " << ( msg_speed.response.stalled ? "true" : "false" )
  33. );
  34. }
  35. else
  36. {
  37. // Note that this might happen at the beginning, because
  38. // the service server could have not started yet!
  39. ROS_ERROR_STREAM( "Call to speed service failed!" );
  40. }
  41. ++i;
  42. ros::spinOnce();
  43. rate.sleep();
  44. }
  45. return EXIT_SUCCESS;
  46. }

example5.cpp中的代码

  1. #include <ros/ros.h>
  2. #include <ros/console.h>
  3. #include <std_msgs/Int32.h>
  4. #include <geometry_msgs/Vector3.h>
  5. #include <chapter3_tutorials/SetSpeed.h>
  6. float previous_speed = 0.;
  7. float new_speed = 0.;
  8. void callback_temp( const std_msgs::Int32::ConstPtr& msg )
  9. {
  10. ROS_INFO_STREAM( "Temp = " << msg->data );
  11. }
  12. void callback_accel( const geometry_msgs::Vector3::ConstPtr& msg )
  13. {
  14. ROS_INFO_STREAM(
  15. "Accel = (" << msg->x << ", " << msg->y << ", " << msg->z << ")"
  16. );
  17. }
  18. bool callback_speed(
  19. chapter3_tutorials::SetSpeed::Request &req,
  20. chapter3_tutorials::SetSpeed::Response &res
  21. )
  22. {
  23. ROS_INFO_STREAM(
  24. "speed service request: desired speed = " << req.desired_speed
  25. );
  26. new_speed = 0.9 * req.desired_speed;
  27. res.previous_speed = previous_speed;
  28. res.new_speed = new_speed;
  29. res.stalled = new_speed < 0.1;
  30. previous_speed = new_speed;
  31. return true;
  32. }
  33. int main( int argc, char **argv )
  34. {
  35. ros::init( argc, argv, "example5" );
  36. ros::NodeHandle n;
  37. ros::Subscriber sub_temp = n.subscribe( "temp", 1000, callback_temp );
  38. ros::Subscriber sub_accel = n.subscribe( "accel", 1000, callback_accel );
  39. ros::ServiceServer srv_speed = n.advertiseService( "speed", callback_speed );
  40. while( ros::ok() ) {
  41. ros::spin();
  42. }
  43. return EXIT_SUCCESS;
  44. }

第三步:在launch文件夹下新建example4_5.launch,内容如下

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <launch>
  3. <!-- Example 4 and 5 -->
  4. <node pkg="chapter3_tutorials" type="example4" name="example4"
  5. output="screen"/>
  6. <node pkg="chapter3_tutorials" type="example5" name="example5"
  7. output="screen"/>
  8. </launch>

第四步:编辑CMakeLists.txt,将以下命令行复制到文件的末尾处,编译

  1. rosbuild_add_executable(example4 src/example4.cpp)
  2. rosbuild_add_executable(example5 src/example5.cpp)

第五步:将使用以下文件同时运行example4和example5节点

$ roslaunch chapter3_tutorials example4_5.launch

用rxgraph 工具对当前运行的系统中状态图形化显示

$ rxgraph --

v2-c6d8062f1c3c0f1840c99c2632d7a7bf_b.jpg

②roswtf检测功能包中所有组件潜在的问题

使用roscd移动到你想要分析的功能包路径下,然后运行roswtf。

v2-b2a18caa808efbab7f23385922df032b_b.jpg

References:

[1]. Aaron Martinez Enrique Fern andez, ROS机器人程序设计[B], P43-58, 2014.

http://wiki.ros.org/rxgraph

http://www.ncnynl.com/


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/496671
推荐阅读
相关标签
  

闽ICP备14008679号