Does the Robotics System Toolbox support connecting two ROS master core with different ports?

1 vue (au cours des 30 derniers jours)
Bo Shang
Bo Shang le 19 Août 2017
Commenté : Bo le 24 Août 2017
Hello I am trying to use Robotics System Toolbox to connect two drones in Gazebo. The two drones are separated by using different ROS master cores(different port).
On this page https://github.com/osrf/uctf/blob/master/doc/run_example/readme.md they said,"Each vehicle uses a separate ROS master to isolate the payloads from each vehicle."
I wonder if Robotics System Toolbox supports connecting with two different ROS masters at the same time.
If I use Simulink blocks, how to select with ROS master a block is connected to? Thanks, Bo Shang

Réponses (1)

Sharan Paramasivam Murugesan
Sharan Paramasivam Murugesan le 21 Août 2017
Yes, it is possible to connect to two different ROS masters simultaneously from MATLAB. These two ROS masters do not share information and must have different port numbers. Connect ROS nodes to these masters based on how you want to separate information across the network.
Create two ROS masters on different ports.
m1 = robotics.ros.Core; % Default port of 11311
m2 = robotics.ros.Core(12000);
Connect separate ROS nodes to each ROS master.
node1 = robotics.ros.Node('/test_node_1','localhost');
node2 = robotics.ros.Node('/test_node_2','localhost',12000);
Clear the ROS nodes. Shut down the ROS masters.
clear('node1','node2')
clear('m1','m2')
  1 commentaire
Bo
Bo le 24 Août 2017
Do you have some sample projects that use one Simulink file to control two drones in Gazebo?
Thanks,
Bo

Connectez-vous pour commenter.

Catégories

En savoir plus sur Robotics dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by