Skip to content

npedemon/matlab_ros_bridge

 
 

Repository files navigation

matlab_ros_bridge

This page contains the source code of a set of Matlab C++ S-functions that can be used to:

  • synchronize simulink with the system clock, thus obtaining a soft-real-time execution;
  • interface simulink blocks with other ROS nodes using ROS messages.

This project is based on a work started by Martin Riedel and Riccardo Spica at the Max Plank Institute for Biological Cybernetics in Tuebingen (Germany). This fork is currently supported by Riccardo Spica and Giovanni Claudio at the Inria Istitute in Rennes (France).

The software is released under the BSD license. See the LICENSE file in this repository for more information.

##Configuring Matlab

Before proceeding with the next steps you need to configure Matlab mex compiler. If you have not done it yet, run matlab and type this command in the command window:

mex -setup

When you get the following message:

Enter the number of the compiler (0-1):

Enter 1 to select the first option. This should create a mex option file in ~/.matlab/R2014a/mexopts.sh.

##Compiling the bridge

The process of compiling the matlab_ros_bridge is not straightforward. The main problem is that MATLAB doesn't use the system distribution of boost but instead comes with its ows shipped version, which can be found in, e.g. 'matlabroot/bin/glnxa64/'. Since the mex files that we generate will run inside matlab it is important that they are linked against the same version of boost that is used in MATLAB. Moreover, since the mex files will also be linked to ROS libraries, we also need to recompile ROS and link it to the same version of boost. Finally we also need to compile everyting (boost, ros and our mex files) using a c/c++ compiler officially supported by the MATLAB distribution that we are using.

###Compiling boost

This section will guide you through the process of compiling the required version of boost with the compiler supported by your Matlab version. Before doing this you should try using one of the precompiled boost distributions available in the download section of this repository. Check the version correspondance table below in this page to find the correct download link. If you cannot find a precompiled boost download link for you setup then keep reading, otherwise skip to the following section.

  1. Download the correct version of boost from here in a folder of your choice (later referred to as <boost_dir>). To know which version you need you can type, in a matlab command window, the following command:

    ls([matlabroot '/bin/glnxa64/libboost_date_time*'])
  2. Open a new terminal and navigate to <boost_dir> and give the following command:

    $ ./bootstrap.sh --prefix=path/to/boost/installation/prefix
  3. Edit the file <boost_dir>/project-config.jam with your favourite tool and substitute:

    using gcc;

    with (e.g.)

    using gcc : 4.4 : g++-4.4 : -std=c++0x ;

    The exact version of gcc/g++ that you need to use depends on the matlab release (check it on Matlab website).

  4. Build boost by doing:

    $ ./bjam link=shared -j8 install

Note: while building Boost you might encounter this pseudo-bug due to an incompatibility between older versions of Boost and the new C11 standard. To solve this you can either substitute all occurrences of TIME_UTC in all Boost headers with TIME_UTC_ (as done in more recent versions of Boost). For istance, in version 1.49.0, you need to modify <boost_dir>/boost/thread/xtime.hpp and <boost_dir>/libs/thread/src/pthread/timeconv.inl.

In some cases you might be able to solve this issue by modifying <boost_dir>/project-config.jam so as to change

using gcc : 4.4 : g++-4.4 ;

to

using gcc : 4.4 : g++-4.4 : -U_GNU_SOURCE ;

If you are building boost on a x64 system you might also encounter this bug. In this case just apply the proposed fix.

###Compiling ROS

  1. Follow the instructions for your ROS distribution on http://wiki.ros.org/<distro>/Installation/Source (e.g. for Indigo), to install ROS-Comm in the "wet" version until you need to compile. DON'T COMPILE NOW (it means that you don't have to do a catkin_make or catkin_make_isolated).

  2. In a terminal navigate to the src directory of the catkin workspace created in the previous step and do:

    $ wstool set matlab_ros_bridge --git https://github.com/lagadic/matlab_ros_bridge.git
    $ wstool update matlab_ros_bridge
  3. Before compiling you might also need to modify the file src/roscpp/src/libros/param.cpp as described here.

  4. Compile ros and the bridge with:

    $ catkin_make_isolated --cmake-args -DBOOST_ROOT=path/to/boost/installation/prefix -DBoost_NO_SYSTEM_PATHS=ON -DCMAKE_C_COMPILER=/usr/bin/gcc-4.4 -DCMAKE_CXX_COMPILER=/usr/bin/g++-4.4 -DMATLAB_DIR=/usr/local/MATLAB/R2012b

    note that you might need to change this command according to your <boost_dir>, Matlab path and compiler version. Add install at the end or run catkin_make install if desired.

  5. Navigate in a terminal to the build directory of the package matlab_ros_bridge. It should be in catkin_ws/build_isolated/matlab_ros_bridge. Make sure you have "sourced" your workspace by running:

    $ source /path/to/your/catkin_ws/devel_isolated/setup.bash
    $ cmake .

    Now generate the simulink block library by running:

    $ make generate_library

Note: the incompatibility issue discussed in the previous section might cause rosbag (and possibly other packages) to fail building. If this is the case, either substitute all occurrences of TIME_UTC in all rosbag source files with TIME_UTC_ or add -DCMAKE_CXX_FLAGS=-U_GNU_SOURCE to your catkin_make_isolated command in step 4.

###Running MATLAB

  1. In your MATLAB Startup File add the following lines:

    addpath(fullfile('path','to','your','catkin_ws','devel_isolated','matlab_ros_bridge','share','matlab_ros_bridge'));
    run(fullfile('path','to','your','catkin_ws','devel_isolated','matlab_ros_bridge','share','matlab_ros_bridge','setup.m'));
  2. To run matlab open a terminal and type the following:

    $ source /path/to/your/catkin_ws/devel_isolated/setup.bash
    $ matlab

###Testing that everything works

  1. In your matlab command window navigate to the folder /path/to/your/catkin_ws/src/matlab_ros_bridge/matlab_ros_bridge/models and type

    Tsim = 2e-5;

    Now open the model test.slx and try to run it in all different running mode.

##Note

It might be possible (but it has never been tested) to avoid compiling boost and try to link ros and the mex files against the boost libraries contained in the MATLAB installation directory.

##Matlab boost and cpp version correspondances and download link

Matlab version gcc supported version shipped boost vesion compiled boost download Matlab compiled version
2012a GNU gcc/g++ 4.4.x 1.44.0 boost_1_44_0_gcc_4_4.tar.bz2 boost_R2012a_x64.tar.gz
2012b GNU gcc/g++ 4.4.x 1.44.0 boost_1_44_0_gcc_4_4.tar.bz2 boost_R2012b_x64.tar.gz
2013a GNU gcc/g++ 4.4.x 1.49.0 boost_1_49_0_gcc_4_4.tar.bz2 boost_R2013a_x64.tar.gz
2013b GNU gcc/g++ 4.7.x 1.49.0 boost_1_49_0_gcc_4_7.tar.bz2 boost_R2013b_x64.tar.gz
2014a GNU gcc/g++ 4.7.x 1.49.0 boost_1_49_0_gcc_4_7.tar.bz2 boost_R2014a_x64.tar.gz

##Ros/Matlab combinatios that have already been tested:

Ros\Matlab 2012a 2012b 2013a 2013b 2014a 2014b
Groovy never tested never tested never tested never tested never tested never tested
Hydro never tested never tested never tested working working never tested
Indigo never tested never tested never tested never tested working never tested

About

Set of simulink s-functions to communicate with ROS

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 88.5%
  • CMake 10.8%
  • MATLAB 0.7%