Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.46 KB | None | 0 0
  1. mauro@WoodyRos:~/catkin_ws$ catkin_make clean
  2. Base path: /home/mauro/catkin_ws
  3. Source space: /home/mauro/catkin_ws/src
  4. Build space: /home/mauro/catkin_ws/build
  5. Devel space: /home/mauro/catkin_ws/devel
  6. Install space: /home/mauro/catkin_ws/install
  7. ####
  8. #### Running command: "make cmake_check_build_system" in "/home/mauro/catkin_ws/build"
  9. ####
  10. ####
  11. #### Running command: "make clean -j2 -l2" in "/home/mauro/catkin_ws/build"
  12. ####
  13. mauro@WoodyRos:~/catkin_ws$
  14. mauro@WoodyRos:~/catkin_ws$ catkin_make
  15. Base path: /home/mauro/catkin_ws
  16. Source space: /home/mauro/catkin_ws/src
  17. Build space: /home/mauro/catkin_ws/build
  18. Devel space: /home/mauro/catkin_ws/devel
  19. Install space: /home/mauro/catkin_ws/install
  20. ####
  21. #### Running command: "make cmake_check_build_system" in "/home/mauro/catkin_ws/build"
  22. ####
  23. ####
  24. #### Running command: "make -j2 -l2" in "/home/mauro/catkin_ws/build"
  25. ####
  26. [  0%] Built target std_msgs_generate_messages_py
  27. [  0%] Built target _robocontroller_generate_messages_check_deps_Telemetry
  28. [  0%] Built target geometry_msgs_generate_messages_py
  29. [  0%] Built target geometry_msgs_generate_messages_lisp
  30. [  0%] Built target std_msgs_generate_messages_lisp
  31. [  0%] Built target _robocontroller_generate_messages_check_deps_Pose
  32. [  0%] Built target std_msgs_generate_messages_cpp
  33. [  0%] Built target geometry_msgs_generate_messages_cpp
  34. [ 10%] [ 20%] Building CXX object RoboController-ROS/CMakeFiles/robocontroller_node.dir/src/robocontroller_node.cpp.o
  35. Generating Python from MSG robocontroller/Telemetry
  36. [ 30%] Generating Python from MSG robocontroller/Pose
  37. [ 40%] Generating Python msg __init__.py for robocontroller
  38. [ 40%] Built target robocontroller_generate_messages_py
  39. [ 50%] Generating Lisp code from robocontroller/Telemetry.msg
  40. [ 60%] Generating Lisp code from robocontroller/Pose.msg
  41. [ 60%] Built target robocontroller_generate_messages_lisp
  42. [ 70%] Generating C++ code from robocontroller/Telemetry.msg
  43. [ 80%] Generating C++ code from robocontroller/Pose.msg
  44. [ 80%] Built target robocontroller_generate_messages_cpp
  45. [ 80%] Built target robocontroller_generate_messages
  46. [ 90%] Building CXX object RoboController-ROS/CMakeFiles/robocontroller_node.dir/src/rbctrliface/src/rbctrliface.cpp.o
  47. [100%] Building CXX object RoboController-ROS/CMakeFiles/robocontroller_node.dir/src/rbctrliface/src/robotctrl.cpp.o
  48. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp: In member function ‘void robocontroller::RobotCtrl::applySpeedFilter()’:
  49. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:160:41: error: ‘telemetry’ was not declared in this scope
  50.      if( ((mSpeedMeanLeft != 0) && _SIGN(telemetry.LinSpeedLeft) != _SIGN(mSpeedMeanLeft)) ||
  51.                                          ^
  52. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:9:21: note: in definition of macro ‘_SIGN’
  53.  #define _SIGN(X) (((X) >= 0) - ((X) < 0))
  54.                      ^
  55. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:169:41: error: ‘telemetry’ was not declared in this scope
  56.      if( ((mSpeedMeanRight != 0) &&_SIGN(telemetry.LinSpeedRight)!=_SIGN(mSpeedMeanRight)) ||
  57.                                          ^
  58. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:9:21: note: in definition of macro ‘_SIGN’
  59.  #define _SIGN(X) (((X) >= 0) - ((X) < 0))
  60.                      ^
  61. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:191:9: error: ‘telemetry’ was not declared in this scope
  62.          telemetry.LinSpeedLeft = mSpeedMeanLeft;
  63.          ^
  64. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:193:9: error: ‘telemetry’ was not declared in this scope
  65.          telemetry.LinSpeedLeft = telemetry.LinSpeedLeft;
  66.          ^
  67. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:196:9: error: ‘telemetry’ was not declared in this scope
  68.          telemetry.LinSpeedRight = mSpeedMeanRight;
  69.          ^
  70. /home/mauro/catkin_ws/src/RoboController-ROS/src/rbctrliface/src/robotctrl.cpp:198:9: error: ‘telemetry’ was not declared in this scope
  71.          telemetry.LinSpeedRight = telemetry.LinSpeedRight;
  72.          ^
  73. make[2]: *** [RoboController-ROS/CMakeFiles/robocontroller_node.dir/src/rbctrliface/src/robotctrl.cpp.o] Errore 1
  74. make[1]: *** [RoboController-ROS/CMakeFiles/robocontroller_node.dir/all] Errore 2
  75. make: *** [all] Errore 2
  76. Invoking "make" failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement