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

dharanikumar's profile - activity

2020-12-17 03:09:46 -0500 received badge  Famous Question (source)
2020-03-31 20:31:04 -0500 received badge  Nice Question (source)
2019-10-15 15:19:21 -0500 received badge  Notable Question (source)
2018-10-18 14:18:18 -0500 received badge  Famous Question (source)
2018-10-18 14:18:18 -0500 received badge  Notable Question (source)
2018-10-18 14:18:18 -0500 received badge  Popular Question (source)
2017-07-12 03:40:04 -0500 received badge  Famous Question (source)
2017-05-06 15:19:31 -0500 received badge  Famous Question (source)
2017-04-19 13:04:34 -0500 received badge  Notable Question (source)
2017-04-12 01:54:30 -0500 received badge  Popular Question (source)
2017-04-06 08:01:46 -0500 asked a question Unwanted prefix getting added to CMAKE_PREFIX_PATH

Hi, I am using ROS Indigo. The problem is very simple. I unset the CMAKE_PREFIX_PATH variable. I source /devel/setup.bash. I get an unwanted prefix /home/<user-name>/devel added to my CMAKE_PREFIX_PATH.

echo $CMAKE_PREFIX_PATH
/home/<user-name>/devel:/home/<user-name>/catkin_ws/devel:/opt/ros/indigo

I didn't do any changes to devel/setup.bash or devel/setup.sh. What could be the cause? and How to avoid it?

Thank you.

2017-04-03 10:18:18 -0500 received badge  Student (source)
2017-01-03 09:23:46 -0500 received badge  Popular Question (source)
2016-11-16 22:41:30 -0500 asked a question How to filter NAMEd logs

I would like to filter named log using its name. I cannot able to find that option in rqt_console. The rosconsole man page mentions, named logs will be output to a logger named ros.<package-name>.<name>. How to view this logger from console? PS: I am using launch scripts.

2016-11-11 03:01:19 -0500 received badge  Enthusiast
2016-11-10 02:54:46 -0500 asked a question What linux signal is sent when roslaunch kills a node?

My launch file spawns a ros qt node. After launching, i tried to quit using ctrl+c, but the ros qt node is not terminating. Few other nodes are also present in the launch file with required == "true", When any of that node terminates, launch process tries to kill the ros qt node, no success in the first attempt, but after that it escalates to SIGTERM and then the node terminates. I tried to check the signal sent by the launch process, by writing a signal handler inside ros qt. But no signal is caught when launch initiates the first kill attempt.

2016-09-26 23:13:56 -0500 received badge  Scholar (source)
2016-09-10 01:08:41 -0500 received badge  Supporter (source)
2016-09-09 00:46:37 -0500 received badge  Notable Question (source)
2016-09-08 23:29:18 -0500 commented question how to check in the launch file, whether a node is already running?

@SL Remy I can create a single launch file for executing multiple modules. But i feel the approach of individual launch files is better than single big launch file.

2016-09-08 23:28:44 -0500 commented question how to check in the launch file, whether a node is already running?

@SL Remy But few modules requires a common node to run. So if that node is executed by the first launch file, then subsequent launch file terminates it by restarting the same node.

2016-09-08 23:25:45 -0500 commented question how to check in the launch file, whether a node is already running?

@SL Remy I think of adding separate launch files for each modules. So i can run the modules separately or combined (By executing each launch files in sequence).

2016-09-08 06:55:52 -0500 received badge  Popular Question (source)
2016-09-08 02:34:25 -0500 asked a question how to check in the launch file, whether a node is already running?

Hi, how to check in the launch file (inside the node tag), whether that node is already running?