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

zshn25's profile - activity

2016-02-08 10:44:28 -0500 received badge  Necromancer (source)
2016-02-08 10:44:28 -0500 received badge  Self-Learner (source)
2016-02-08 10:44:28 -0500 received badge  Teacher (source)
2016-02-08 03:45:56 -0500 answered a question configs/nuttx_px4fmu-v2_default

The Issue for this thread https://github.com/PX4/Firmware/issue...

Just download the updated firmware and it works perfectly fine.

2016-02-08 03:43:06 -0500 received badge  Scholar (source)
2016-02-08 03:34:47 -0500 answered a question how to use go to goal for making a turtle follow another turtle?

https://github.com/zshn25/turtlesim_c...

This code is for the reference of this youtube playlist https://www.youtube.com/playlist?list...

If you need to make a bot follow another bot, you can use tf. Create a tf broadcaster for the Master turtle and a tf listener for the Slave turtle. Tutorial for the same can be found at the ROS website http://wiki.ros.org/tf/Tutorials/Intr...

2015-11-08 18:57:18 -0500 received badge  Student (source)
2015-11-02 07:10:50 -0500 received badge  Famous Question (source)
2015-11-02 07:10:50 -0500 received badge  Notable Question (source)
2015-11-02 07:10:50 -0500 received badge  Popular Question (source)
2015-10-31 01:09:04 -0500 asked a question configs/nuttx_px4fmu-v2_default

I followed the tutorials from https://pixhawk.org/dev/ros/sitl and in the end when I did catkin_make, i got the following error. I did not change any files, all I did was follwed that tutorial. Please help!!

CMake Error at Firmware/CMakeLists.txt:158 (include):
  include could not find load file:

    configs/nuttx_px4fmu-v2_default


CMake Error at Firmware/CMakeLists.txt:171 (message):
  configs/nuttx_px4fmu-v2_default must implement px4_os_prebuild_targets


-- Configuring incomplete, errors occurred!
See also "/home/zee/catkin_ws/build/CMakeFiles/CMakeOutput.log".
See also "/home/zee/catkin_ws/build/CMakeFiles/CMakeError.log".
make: *** [cmake_check_build_system] Error 1
Invoking "make cmake_check_build_system" failed

Additional Details:

My Firmware/CMakeLists.txt file includes these lines in the line 158 and 171

151) # switch to ros CMake file if building ros
152) if (${OS} STREQUAL "ros")
153)    include("cmake/ros-CMakeLists.txt")
154) else()  # otherwise use the rest of this file
155) 
156) list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
157) set(config_module "configs/${CONFIG}")
158) include(${config_module})
159) 
160) # cmake modules
161) include(ExternalProject)
162) 
163) # require px4 module interface
164) set(px4_required_interface
165)    px4_os_prebuild_targets
166)    px4_os_add_flags
167)    )
168) 
169) foreach(cmd ${px4_required_interface})
170)    if(NOT COMMAND ${cmd})
171)    message(FATAL_ERROR "${config_module} must implement ${cmd}")
172)    endif()
173) endforeach()