Skip to content

jatowler/marti_common

 
 

Repository files navigation

marti_common

Build Status

This repository provides various utility packages created at Southwest Reseach Institute's Intelligent Vehicle Systems section for working with Robot Operating System(ROS).

Installation (ROS Indigo, Jade, Kinetic)

If you have installed ROS Indigo, Jade, or Kinetic, you can install any of the packages in this repository with apt-get:

sudo apt-get install ros-<distro>-<package>

Building From Source (ROS Indigo, Jade, Kinetic)

These directions assume you have already set up a catkin workspace and rosdep. See this tutorial on the ROS Wiki for help setting up a catkin workspace and the rosdep documentation on the ROS wiki for help setting up rosdep.

  1. Check out the source code

    a. If you use wstool:

    # Replace $ROS_DISTRO with indigo, jade, or kinetic as appropriate
    wstool set marti_common --git https://github.com/swri-robotics/marti_common.git -v $ROS_DISTRO-devel
    wstool update marti_common
    

    b. Using plain git:

    # Replace $ROS_DISTRO with indigo, jade, or kinetic as appropriate
    git clone https://github.com/swri-robotics/marti_common.git --branch $ROS_DISTRO-devel
    
  2. Install dependencies:

    # (In the root of this repository)
    rosdep install --from-paths . --ignore-src
    
  3. Build

    a. If you use catkin tools:

    catkin build
    

    b. Using plain catkin:

    catkin_make
    

About

Common utility functions for MARTI

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 93.4%
  • CMake 3.5%
  • Python 2.4%
  • Other 0.7%