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

benjmitch's profile - activity

2022-06-23 05:28:38 -0500 received badge  Self-Learner (source)
2022-06-23 05:28:38 -0500 received badge  Teacher (source)
2020-11-06 10:50:47 -0500 received badge  Famous Question (source)
2020-10-29 01:10:06 -0500 edited answer How to receive standard message that has changed format in noetic?

Communication of topics between nodes built on different versions of ROS (e.g. kinetic <--> noetic) seems generall

2020-10-21 15:38:28 -0500 edited answer How to receive standard message that has changed format in noetic?

Policy in ROS versioning is that communication between different versions (e.g. kinetic <--> noetic) ought to work

2020-10-21 15:38:28 -0500 received badge  Editor (source)
2020-10-21 15:32:36 -0500 edited answer How to receive standard message that has changed format in noetic?

Policy in ROS versioning is that communication between different versions (e.g. kinetic <--> noetic) ought to work

2020-10-21 15:19:10 -0500 answered a question How to receive standard message that has changed format in noetic?

Policy in ROS versioning is that communication between different versions (e.g. kinetic <--> noetic) ought to work

2020-10-21 15:19:10 -0500 received badge  Rapid Responder (source)
2020-10-20 10:39:19 -0500 received badge  Notable Question (source)
2020-10-20 08:45:22 -0500 commented question How to receive standard message that has changed format in noetic?

It's not unreasonable, but - no - you don't fit the profile ;), hence my looking for a way to make it transparent. Thank

2020-10-20 08:27:47 -0500 commented question How to receive standard message that has changed format in noetic?

Thanks, very helpful to my understanding. A relay node would have to move the signal to a different topic name, right? E

2020-10-20 07:58:16 -0500 commented question How to receive standard message that has changed format in noetic?

I see. I didn't mean to criticise a lack of documentation to be clear,, just wondered if there was some that I had not f

2020-10-20 07:56:51 -0500 commented question How to receive standard message that has changed format in noetic?

I see. I didn't mean to criticise a lack of documentation to be clear,, just wondered if there was some that I had not f

2020-10-20 05:25:14 -0500 received badge  Popular Question (source)
2020-10-19 19:29:34 -0500 commented question How to receive standard message that has changed format in noetic?

Clarification: It is possible to write a client that subscribes to these topics from noetic by providing the kinetic (le

2020-10-19 17:10:16 -0500 received badge  Famous Question (source)
2020-10-19 16:28:37 -0500 asked a question How to receive standard message that has changed format in noetic?

How to receive standard message that has changed format in noetic? Hi, One of our products is built on ROS kinetic and

2018-01-06 15:37:29 -0500 received badge  Notable Question (source)
2017-08-08 03:41:01 -0500 received badge  Popular Question (source)
2017-08-01 13:20:59 -0500 commented answer Can I roll my own ROS executable?

@jkretz You can then, as described in my question, build your ROS nodes (listeners/subscribers) standalone, and not worr

2017-08-01 13:19:26 -0500 commented answer Can I roll my own ROS executable?

@jkretz Alas, you credit me with too much organisation. The project has been yocto now for months, and the buildroot con

2017-08-01 11:17:26 -0500 commented answer Can I roll my own ROS executable?

@jkretz It did work, yes; I've since moved to Yocto, which was a pain, but easier than buildroot for me now it's done. H

2017-06-27 08:42:27 -0500 commented question Is there documented best practice for design of the interface to a robot?

I can, yes (I can add this to the question if necessary, the robot in question is a differential drive mobile base with

2017-06-27 07:13:21 -0500 asked a question Is there documented best practice for design of the interface to a robot?

Is there documented best practice for design of the interface to a robot? Hi, Apologies if this is covered somewhere, b

2017-05-17 12:12:18 -0500 received badge  Famous Question (source)
2016-03-11 11:10:57 -0500 received badge  Enthusiast
2016-03-04 18:35:27 -0500 received badge  Notable Question (source)
2016-03-04 15:09:06 -0500 received badge  Popular Question (source)
2016-03-04 13:00:28 -0500 asked a question Can I roll my own ROS executable?

Hi

I'm aiming to deploy a single ROS node on an embedded platform (buildroot, AM335x) that bridges between the embedded system and the network by publishing a signal or two, and subscribing to one or two more. I have spent the day figuring how to cross-compile the node for the target, mostly involving getting the ros packages to build from source against the target. I've now got a ros node executable that runs on the target (where I've also deployed the ros libs libros*.so and so on). However, it doesn't manage to contact the master on my workstation.

Now, there may be just some silly config problem and that's why the connection is failing. But my question is - is my approach naive? Is there lots more to ROS that would need to be deployed on the target for this to work? Or is the executable and the libros*.so (etc.) all I really need, save for getting the configuration right?

Any high-level advice gratefully received.

FYI, the reason I'm not using an off-the-shelf package is that there isn't one for buildroot. The reason I'm not switching to yocto is that it was hard enough getting buildroot to work correctly with the platform.

Cheers