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

rama_bhuyan's profile - activity

2020-11-24 05:56:52 -0500 received badge  Notable Question (source)
2019-03-22 19:54:41 -0500 received badge  Famous Question (source)
2019-03-01 16:31:41 -0500 marked best answer can we assign value to the request variable of srv file other then run time ?

with an example,

AddTwoInts.srv

int64 a

int64 b


int64 sum

client.cpp

srv.request.a =atoll(argv[1]);

srv. request.b =atoll(argv[2]);

/* which takes the value during run time */

can I assign the value of a and b during writing of the code? pre assign of the value to the variable ?

2019-03-01 16:30:25 -0500 received badge  Popular Question (source)
2019-02-01 02:19:51 -0500 received badge  Famous Question (source)
2018-11-09 12:39:09 -0500 received badge  Famous Question (source)
2018-09-28 02:46:06 -0500 received badge  Supporter (source)
2018-09-26 18:53:42 -0500 received badge  Famous Question (source)
2018-09-14 00:12:49 -0500 commented question Can we change the order of package compilation in catkin_make command?

the error I am getting is: Could not find configuration file provided by "/package_1" with any of the following name pa

2018-09-14 00:12:49 -0500 received badge  Commentator
2018-09-14 00:10:26 -0500 commented question Can we change the order of package compilation in catkin_make command?

I have done all necessary changes but still I could not arrange the projects. after $catkin_make , the packages are arra

2018-09-13 03:52:52 -0500 marked best answer Can a topic be subscribed in two different function of the same program

I wanted to subscribe same topic in two different functions of the same code. so I just wanted to know, will the subscriber stops subscribing after it comes out of the function or it still keeps on subscribing.

just the format I have followed,

finction_1()
   {
     ros::subscriber sub= n.subscribe("topic", 1000, topic_callback);
   }

finction_2()
   {
    ros::subscriber sub= n.subscribe("topic", 1000, topic_callback);
   }

int main ()
{
      function_1();
     function_2();
 }

will this format create any conflict?

2018-09-12 01:03:56 -0500 answered a question Could not find a package configuration file provided by "cv_bridge"

I have a supplementary question on this I have two created a package lets say ** /package_1 ** and /package

2018-09-11 23:34:32 -0500 commented question Can we change the order of package compilation in catkin_make command?

@mgruhler , would you please explaion what changes I need to make in the CMakeLists.txt of /package_3 . I have done: pa

2018-09-11 12:54:08 -0500 received badge  Notable Question (source)
2018-09-11 10:39:38 -0500 received badge  Popular Question (source)
2018-09-11 07:30:07 -0500 asked a question Can we change the order of package compilation in catkin_make command?

Can we change the order of package compilation in catkin_make command? $ catkin_make : compiles all the ros packages av

2018-09-11 07:10:26 -0500 commented question Can a topic be subscribed in two different function of the same program

yes, it is global variable. And it keep on subscribing after the function returns. but I have resolved the issue of mult

2018-09-02 23:38:07 -0500 commented question Can a topic be subscribed in two different function of the same program

my query is, once the function scope is over the subscriber stops subscribing?

2018-08-30 08:25:53 -0500 received badge  Notable Question (source)
2018-08-30 03:32:18 -0500 received badge  Popular Question (source)
2018-08-29 23:23:55 -0500 asked a question Can a topic be subscribed in two different function of the same program

Can a topic be subscribed in two different function of the same program I wanted to subscribe same topic in two differen

2018-08-22 23:14:13 -0500 received badge  Famous Question (source)
2018-08-21 22:45:06 -0500 edited question can we assign value to the request variable of srv file other then run time ?

can we assign value to the request variable of srv file other then run time ? with an example, AddTwoInts.srv int64 a

2018-08-21 22:45:06 -0500 received badge  Editor (source)
2018-08-21 22:43:34 -0500 edited question can we assign value to the request variable of srv file other then run time ?

can we assign value to the request variable of srv file other then run time ? with an example, AddTwoInts.srv ## int64

2018-08-21 22:42:39 -0500 asked a question can we assign value to the request variable of srv file other then run time ?

can we assign value to the request variable of srv file other then run time ? with an example, AddTwoInts.srv int64 a

2018-08-17 09:01:57 -0500 received badge  Notable Question (source)
2018-08-17 06:21:04 -0500 received badge  Popular Question (source)
2018-08-09 05:41:19 -0500 asked a question is there any way of using python 3.5 in ROS kinetic

is there any way of using python3.5 in ros kinetics I have one python library which is in python3.5. but ROS works only

2018-05-21 06:40:13 -0500 received badge  Enthusiast
2018-05-18 15:56:42 -0500 received badge  Notable Question (source)
2018-05-18 08:44:39 -0500 received badge  Student (source)
2018-05-18 05:04:37 -0500 commented answer How to call ros functions from an external .cpp or .c file?

I could able to execute ROS publisher node, outside of catkin_ws. by adding the ros libraries manually.

2018-05-18 00:40:28 -0500 commented question undefined Reference to ros::init on kinetic in non-ros-domain workspace

Thank you so much @jarvisschultz. ldd command really helped me a lot. I could able to run my .cpp ros program outside of

2018-05-17 22:40:09 -0500 received badge  Popular Question (source)
2018-05-17 08:07:38 -0500 received badge  Notable Question (source)
2018-05-17 06:01:06 -0500 commented question undefined Reference to ros::init on kinetic in non-ros-domain workspace

It uses std_msgs and roscpp in the find_package() section of CMakeLists.txt. Is there any way to find out the libs use

2018-05-17 06:00:37 -0500 commented question undefined Reference to ros::init on kinetic in non-ros-domain workspace

It uses std_msgs and roscpp in the find_package() section of CMakeLists.txt. Is there any way to find out the libs use

2018-05-17 05:58:56 -0500 commented question undefined Reference to ros::init on kinetic in non-ros-domain workspace

Hello @jarvisscchultz But I could not figure out which exact libraries are being used while I am creating .cpp file as

2018-05-17 05:47:04 -0500 answered a question How to call ros functions from an external .cpp or .c file?

Hello , Can anyone suggest me some solution ?

2018-05-14 16:40:25 -0500 received badge  Popular Question (source)
2018-05-14 00:57:49 -0500 asked a question How to call ros functions from an external .cpp or .c file?

How to call ros functions from an external .cpp or .c file? Hello All, I am trying to access some of the ROS functions

2018-05-09 07:23:42 -0500 asked a question undefined Reference to ros::init on kinetic in non-ros-domain workspace

undefined Reference to ros::init on kinetic in non-ros-domain workspace Hi All, I am trying to compile a .cpp file whic